Package com.microstrategy.webapi
Enum EnumJSONContextDetailFlags
- java.lang.Object
-
- java.lang.Enum<EnumJSONContextDetailFlags>
-
- com.microstrategy.webapi.EnumJSONContextDetailFlags
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EnumJSONContextDetailFlags>
public enum EnumJSONContextDetailFlags extends java.lang.Enum<EnumJSONContextDetailFlags>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static EnumJSONContextDetailFlags
valueOf(int value)
Returns the enum constant of this type with the specified name.static EnumJSONContextDetailFlags
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EnumJSONContextDetailFlags[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CURRENT_LAYOUT_DEFINITION
public static final EnumJSONContextDetailFlags CURRENT_LAYOUT_DEFINITION
-
IMAGE_BINARY
public static final EnumJSONContextDetailFlags IMAGE_BINARY
-
EXCLUDE_DATA_RESULT_FRON_DATA_PART
public static final EnumJSONContextDetailFlags EXCLUDE_DATA_RESULT_FRON_DATA_PART
-
PARTIAL_RETRIEVAL
public static final EnumJSONContextDetailFlags PARTIAL_RETRIEVAL
-
COMPRESSED_JSON
public static final EnumJSONContextDetailFlags COMPRESSED_JSON
-
JSON_FOR_CUBE
public static final EnumJSONContextDetailFlags JSON_FOR_CUBE
-
GATEWAY_VALUE_STYLE_EXCLUDE_RAW
public static final EnumJSONContextDetailFlags GATEWAY_VALUE_STYLE_EXCLUDE_RAW
-
GATEWAY_VALUE_STYLE_EXCLUDE_FORMATTED
public static final EnumJSONContextDetailFlags GATEWAY_VALUE_STYLE_EXCLUDE_FORMATTED
-
GATEWAY_VALUE_STYLE_EXCLUDE_EXTRAS
public static final EnumJSONContextDetailFlags GATEWAY_VALUE_STYLE_EXCLUDE_EXTRAS
-
GATEWAY_VALUE_STYLE_EXCLUDE_COLUMNSETS_RAW
public static final EnumJSONContextDetailFlags GATEWAY_VALUE_STYLE_EXCLUDE_COLUMNSETS_RAW
-
GATEWAY_VALUE_STYLE_EXCLUDE_COLUMNSETS_FORMATTED
public static final EnumJSONContextDetailFlags GATEWAY_VALUE_STYLE_EXCLUDE_COLUMNSETS_FORMATTED
-
GATEWAY_VALUE_STYLE_EXCLUDE_COLUMNSETS_EXTRAS
public static final EnumJSONContextDetailFlags GATEWAY_VALUE_STYLE_EXCLUDE_COLUMNSETS_EXTRAS
-
GATEWAY_VALUE_STYLE_ISO8601_RAW_VALUE
public static final EnumJSONContextDetailFlags GATEWAY_VALUE_STYLE_ISO8601_RAW_VALUE
-
GATEWAY_VALUE_STYLE_ISO8601_FORMATTED_VALUE
public static final EnumJSONContextDetailFlags GATEWAY_VALUE_STYLE_ISO8601_FORMATTED_VALUE
-
GATEWAY_PAGEBY_ONLY
public static final EnumJSONContextDetailFlags GATEWAY_PAGEBY_ONLY
-
GATEWAY_PARTIAL_PAGEBY
public static final EnumJSONContextDetailFlags GATEWAY_PARTIAL_PAGEBY
-
MAIN_ATTRIBUTE_ONLY
public static final EnumJSONContextDetailFlags MAIN_ATTRIBUTE_ONLY
-
INCLUDING_THRESHOLD_INDICES
public static final EnumJSONContextDetailFlags INCLUDING_THRESHOLD_INDICES
-
-
Method Detail
-
values
public static EnumJSONContextDetailFlags[] 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 (EnumJSONContextDetailFlags c : EnumJSONContextDetailFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumJSONContextDetailFlags 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
-
getValue
public int getValue()
-
valueOf
public static EnumJSONContextDetailFlags valueOf(int value)
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:
value
- 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
-
-