Package com.microstrategy.webapi
Enum EnumDSSXMLQuickSearchCertifiedStatus
- java.lang.Object
-
- java.lang.Enum<EnumDSSXMLQuickSearchCertifiedStatus>
-
- com.microstrategy.webapi.EnumDSSXMLQuickSearchCertifiedStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EnumDSSXMLQuickSearchCertifiedStatus>
public enum EnumDSSXMLQuickSearchCertifiedStatus extends java.lang.Enum<EnumDSSXMLQuickSearchCertifiedStatus>
Enumeration that represents what can be passed in the certifystat attribute of the IServer quick search command
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
CERTIFIED_ONLY
NOT_CERTIFIED_ONLY
OFF
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EnumDSSXMLQuickSearchCertifiedStatus
fromDescription(java.lang.String desc)
static EnumDSSXMLQuickSearchCertifiedStatus
fromDescWithDefault(java.lang.String desc, EnumDSSXMLQuickSearchCertifiedStatus defaultValue)
java.lang.String
getDescription()
int
getValue()
static EnumDSSXMLQuickSearchCertifiedStatus
valueOf(int value)
Returns the enum constant of this type with the specified name.static EnumDSSXMLQuickSearchCertifiedStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EnumDSSXMLQuickSearchCertifiedStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final EnumDSSXMLQuickSearchCertifiedStatus ALL
-
NOT_CERTIFIED_ONLY
public static final EnumDSSXMLQuickSearchCertifiedStatus NOT_CERTIFIED_ONLY
-
CERTIFIED_ONLY
public static final EnumDSSXMLQuickSearchCertifiedStatus CERTIFIED_ONLY
-
OFF
public static final EnumDSSXMLQuickSearchCertifiedStatus OFF
-
-
Method Detail
-
values
public static EnumDSSXMLQuickSearchCertifiedStatus[] 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 (EnumDSSXMLQuickSearchCertifiedStatus c : EnumDSSXMLQuickSearchCertifiedStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumDSSXMLQuickSearchCertifiedStatus 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 EnumDSSXMLQuickSearchCertifiedStatus 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
-
getDescription
public java.lang.String getDescription()
-
fromDescription
public static EnumDSSXMLQuickSearchCertifiedStatus fromDescription(java.lang.String desc)
-
fromDescWithDefault
public static EnumDSSXMLQuickSearchCertifiedStatus fromDescWithDefault(java.lang.String desc, EnumDSSXMLQuickSearchCertifiedStatus defaultValue)
-
-