Enum CVGroupTypeOptions
- java.lang.Object
-
- java.lang.Enum<CVGroupTypeOptions>
-
- org.bidib.jbidibc.decoder.schema.commontypes.CVGroupTypeOptions
-
- All Implemented Interfaces:
Serializable,Comparable<CVGroupTypeOptions>
public enum CVGroupTypeOptions extends Enum<CVGroupTypeOptions>
<p>Java class for CVGroupTypeOptions. <p>The following schema fragment specifies the expected content contained within this class. <pre> <simpleType name="CVGroupTypeOptions"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="bitList"/> <enumeration value="bitListSort"/> <enumeration value="greater"/> <enumeration value="greaterEqual"/> <enumeration value="less"/> <enumeration value="lessEqual"/> <enumeration value="switchRowCol"/> <enumeration value="reverseRow"/> <enumeration value="reverseCol"/> </restriction> </simpleType> </pre>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIT_LISTBIT_LIST_SORTGREATERGREATER_EQUALLESSLESS_EQUALREVERSE_COLREVERSE_ROWSWITCH_ROW_COL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CVGroupTypeOptionsfromValue(String v)Stringvalue()static CVGroupTypeOptionsvalueOf(String name)Returns the enum constant of this type with the specified name.static CVGroupTypeOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BIT_LIST
public static final CVGroupTypeOptions BIT_LIST
-
BIT_LIST_SORT
public static final CVGroupTypeOptions BIT_LIST_SORT
-
GREATER
public static final CVGroupTypeOptions GREATER
-
GREATER_EQUAL
public static final CVGroupTypeOptions GREATER_EQUAL
-
LESS
public static final CVGroupTypeOptions LESS
-
LESS_EQUAL
public static final CVGroupTypeOptions LESS_EQUAL
-
SWITCH_ROW_COL
public static final CVGroupTypeOptions SWITCH_ROW_COL
-
REVERSE_ROW
public static final CVGroupTypeOptions REVERSE_ROW
-
REVERSE_COL
public static final CVGroupTypeOptions REVERSE_COL
-
-
Method Detail
-
values
public static CVGroupTypeOptions[] 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 (CVGroupTypeOptions c : CVGroupTypeOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CVGroupTypeOptions 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
-
value
public String value()
-
fromValue
public static CVGroupTypeOptions fromValue(String v)
-
-