public static enum AbstractType.ComparisonType extends java.lang.Enum<AbstractType.ComparisonType>
Enum Constant and Description |
---|
BYTE_ORDER
This type is always compared by its sequence of unsigned bytes
|
CUSTOM
This type can only be compared by calling the type's compareCustom() method, which may be expensive.
|
NOT_COMPARABLE
This type should never be compared
|
Modifier and Type | Method and Description |
---|---|
static AbstractType.ComparisonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractType.ComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractType.ComparisonType NOT_COMPARABLE
public static final AbstractType.ComparisonType BYTE_ORDER
public static final AbstractType.ComparisonType CUSTOM
public static AbstractType.ComparisonType[] values()
for (AbstractType.ComparisonType c : AbstractType.ComparisonType.values()) System.out.println(c);
public static AbstractType.ComparisonType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2020 The Apache Software Foundation