Enum EnumTableStateExecutionStatus
- java.lang.Object
-
- java.lang.Enum<EnumTableStateExecutionStatus>
-
- com.microstrategy.web.objects.dataimport.EnumTableStateExecutionStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EnumTableStateExecutionStatus>
public enum EnumTableStateExecutionStatus extends java.lang.Enum<EnumTableStateExecutionStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Completed
Error
Publishing
Reserved
SchemaComparisonCompleted
SchemaComparisonError
Waiting
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static EnumTableStateExecutionStatus
strValueToEnum(java.lang.String strValue)
static EnumTableStateExecutionStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EnumTableStateExecutionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Reserved
public static final EnumTableStateExecutionStatus Reserved
-
Waiting
public static final EnumTableStateExecutionStatus Waiting
-
Publishing
public static final EnumTableStateExecutionStatus Publishing
-
Completed
public static final EnumTableStateExecutionStatus Completed
-
Error
public static final EnumTableStateExecutionStatus Error
-
SchemaComparisonCompleted
public static final EnumTableStateExecutionStatus SchemaComparisonCompleted
-
SchemaComparisonError
public static final EnumTableStateExecutionStatus SchemaComparisonError
-
-
Method Detail
-
values
public static EnumTableStateExecutionStatus[] 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 (EnumTableStateExecutionStatus c : EnumTableStateExecutionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumTableStateExecutionStatus 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()
-
strValueToEnum
public static EnumTableStateExecutionStatus strValueToEnum(java.lang.String strValue)
-
-