Package com.attivio.sdk.transport
Enum MultiRegionTransport.MultiRegionIndexType
- java.lang.Object
-
- java.lang.Enum<MultiRegionTransport.MultiRegionIndexType>
-
- com.attivio.sdk.transport.MultiRegionTransport.MultiRegionIndexType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MultiRegionTransport.MultiRegionIndexType>
- Enclosing class:
- MultiRegionTransport<S,R>
public static enum MultiRegionTransport.MultiRegionIndexType extends java.lang.Enum<MultiRegionTransport.MultiRegionIndexType>
MultiRegionTransport.MultiRegionIndexType
defines which conceptual indexes are supported for multi-region replication.- See Also:
MultiRegionTransport.configuredIndexes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABC_INDEX
CONTENT_INDEX
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MultiRegionTransport.MultiRegionIndexType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MultiRegionTransport.MultiRegionIndexType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTENT_INDEX
public static final MultiRegionTransport.MultiRegionIndexType CONTENT_INDEX
-
ABC_INDEX
public static final MultiRegionTransport.MultiRegionIndexType ABC_INDEX
-
-
Method Detail
-
values
public static MultiRegionTransport.MultiRegionIndexType[] 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 (MultiRegionTransport.MultiRegionIndexType c : MultiRegionTransport.MultiRegionIndexType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultiRegionTransport.MultiRegionIndexType 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
-
-