com.gmail.thejcwk.semantics
Enum Filter.ATTRIBUTE_TYPE
java.lang.Object
java.lang.Enum<Filter.ATTRIBUTE_TYPE>
com.gmail.thejcwk.semantics.Filter.ATTRIBUTE_TYPE
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Filter.ATTRIBUTE_TYPE>
- Enclosing class:
- Filter
public static enum Filter.ATTRIBUTE_TYPE
- extends java.lang.Enum<Filter.ATTRIBUTE_TYPE>
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
PHONETIC
public static final Filter.ATTRIBUTE_TYPE PHONETIC
SEMANTIC
public static final Filter.ATTRIBUTE_TYPE SEMANTIC
SYNTACTIC
public static final Filter.ATTRIBUTE_TYPE SYNTACTIC
values
public static final Filter.ATTRIBUTE_TYPE[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(Filter.ATTRIBUTE_TYPE c : Filter.ATTRIBUTE_TYPE.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Filter.ATTRIBUTE_TYPE valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name