Package com.attivio.sdk.search.facet
Enum ScopeFacetRequest.CaseMode
- java.lang.Object
-
- java.lang.Enum<ScopeFacetRequest.CaseMode>
-
- com.attivio.sdk.search.facet.ScopeFacetRequest.CaseMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ScopeFacetRequest.CaseMode>
- Enclosing class:
- ScopeFacetRequest
public static enum ScopeFacetRequest.CaseMode extends java.lang.Enum<ScopeFacetRequest.CaseMode>
Case Normalization Method To Apply To Extracted Scopes.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ScopeFacetRequest.CaseMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ScopeFacetRequest.CaseMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TITLE
public static final ScopeFacetRequest.CaseMode TITLE
Title Case Normalization
-
LOWER
public static final ScopeFacetRequest.CaseMode LOWER
Lower Case Normalization
-
UPPER
public static final ScopeFacetRequest.CaseMode UPPER
Upper Case Normalization
-
NONE
public static final ScopeFacetRequest.CaseMode NONE
No Case Normalization
-
-
Method Detail
-
values
public static ScopeFacetRequest.CaseMode[] 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 (ScopeFacetRequest.CaseMode c : ScopeFacetRequest.CaseMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScopeFacetRequest.CaseMode 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
-
-