Package hdf.view
Enum ViewProperties.BITMASK_OP
- Object
-
- Enum<ViewProperties.BITMASK_OP>
-
- hdf.view.ViewProperties.BITMASK_OP
-
- All Implemented Interfaces:
Serializable
,Comparable<ViewProperties.BITMASK_OP>
- Enclosing class:
- ViewProperties
public static enum ViewProperties.BITMASK_OP extends Enum<ViewProperties.BITMASK_OP>
Property keys control how the data is displayed.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ViewProperties.BITMASK_OP
valueOf(String name)
Returns the enum constant of this type with the specified name.static ViewProperties.BITMASK_OP[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AND
public static final ViewProperties.BITMASK_OP AND
-
EXTRACT
public static final ViewProperties.BITMASK_OP EXTRACT
-
-
Method Detail
-
values
public static ViewProperties.BITMASK_OP[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ViewProperties.BITMASK_OP c : ViewProperties.BITMASK_OP.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ViewProperties.BITMASK_OP valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-