Package com.attivio.sdk.schema
Enum SchemaField.LowerCaseMode
- java.lang.Object
-
- java.lang.Enum<SchemaField.LowerCaseMode>
-
- com.attivio.sdk.schema.SchemaField.LowerCaseMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SchemaField.LowerCaseMode>
- Enclosing class:
- SchemaField
public static enum SchemaField.LowerCaseMode extends java.lang.Enum<SchemaField.LowerCaseMode>
Enum indicating the lowercase mode.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SchemaField.LowerCaseMode
fromExternal(java.lang.String value)
Converts an external value to an TokenizeMode valuestatic SchemaField.LowerCaseMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SchemaField.LowerCaseMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO
public static final SchemaField.LowerCaseMode NO
Explicitly not lower cased.
-
YES
public static final SchemaField.LowerCaseMode YES
Explicitly lower cased.
-
AUTO
public static final SchemaField.LowerCaseMode AUTO
Will be lowercased if tokenized.
-
-
Method Detail
-
values
public static SchemaField.LowerCaseMode[] 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 (SchemaField.LowerCaseMode c : SchemaField.LowerCaseMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SchemaField.LowerCaseMode 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 namejava.lang.NullPointerException
- if the argument is null
-
fromExternal
public static SchemaField.LowerCaseMode fromExternal(java.lang.String value)
Converts an external value to an TokenizeMode value
-
-