Package com.microstrategy.webapi
Enum IDSSXMLAdmin.FORCE_INVALIDATE
- java.lang.Object
-
- java.lang.Enum<IDSSXMLAdmin.FORCE_INVALIDATE>
-
- com.microstrategy.webapi.IDSSXMLAdmin.FORCE_INVALIDATE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IDSSXMLAdmin.FORCE_INVALIDATE>
- Enclosing interface:
- IDSSXMLAdmin
public static enum IDSSXMLAdmin.FORCE_INVALIDATE extends java.lang.Enum<IDSSXMLAdmin.FORCE_INVALIDATE>
When YES is chosen, the GCM cache(s) will be invalidated
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IDSSXMLAdmin.FORCE_INVALIDATE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IDSSXMLAdmin.FORCE_INVALIDATE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YES
public static final IDSSXMLAdmin.FORCE_INVALIDATE YES
-
NO
public static final IDSSXMLAdmin.FORCE_INVALIDATE NO
-
-
Method Detail
-
values
public static IDSSXMLAdmin.FORCE_INVALIDATE[] 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 (IDSSXMLAdmin.FORCE_INVALIDATE c : IDSSXMLAdmin.FORCE_INVALIDATE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IDSSXMLAdmin.FORCE_INVALIDATE 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
-
-