Enum ImportStatus
- java.lang.Object
-
- java.lang.Enum<ImportStatus>
-
- com.streamlayer.interactive.common.ImportStatus
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,java.io.Serializable,java.lang.Comparable<ImportStatus>
public enum ImportStatus extends java.lang.Enum<ImportStatus> implements com.google.protobuf.Internal.EnumLite
Import
Protobuf enumstreamlayer.interactive.ImportStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IMPORT_STATUS_COMPLETEDIMPORT_STATUS_COMPLETED = 3;IMPORT_STATUS_FAILEDIMPORT_STATUS_FAILED = 4;IMPORT_STATUS_PLANNEDIMPORT_STATUS_PLANNED = 1;IMPORT_STATUS_RUNNINGIMPORT_STATUS_RUNNING = 2;IMPORT_STATUS_UNSETIMPORT_STATUS_UNSET = 0;UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intIMPORT_STATUS_COMPLETED_VALUEIMPORT_STATUS_COMPLETED = 3;static intIMPORT_STATUS_FAILED_VALUEIMPORT_STATUS_FAILED = 4;static intIMPORT_STATUS_PLANNED_VALUEIMPORT_STATUS_PLANNED = 1;static intIMPORT_STATUS_RUNNING_VALUEIMPORT_STATUS_RUNNING = 2;static intIMPORT_STATUS_UNSET_VALUEIMPORT_STATUS_UNSET = 0;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ImportStatusforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<ImportStatus>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static ImportStatusvalueOf(int value)Deprecated.static ImportStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ImportStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMPORT_STATUS_UNSET
public static final ImportStatus IMPORT_STATUS_UNSET
IMPORT_STATUS_UNSET = 0;
-
IMPORT_STATUS_PLANNED
public static final ImportStatus IMPORT_STATUS_PLANNED
IMPORT_STATUS_PLANNED = 1;
-
IMPORT_STATUS_RUNNING
public static final ImportStatus IMPORT_STATUS_RUNNING
IMPORT_STATUS_RUNNING = 2;
-
IMPORT_STATUS_COMPLETED
public static final ImportStatus IMPORT_STATUS_COMPLETED
IMPORT_STATUS_COMPLETED = 3;
-
IMPORT_STATUS_FAILED
public static final ImportStatus IMPORT_STATUS_FAILED
IMPORT_STATUS_FAILED = 4;
-
UNRECOGNIZED
public static final ImportStatus UNRECOGNIZED
-
-
Field Detail
-
IMPORT_STATUS_UNSET_VALUE
public static final int IMPORT_STATUS_UNSET_VALUE
IMPORT_STATUS_UNSET = 0;- See Also:
- Constant Field Values
-
IMPORT_STATUS_PLANNED_VALUE
public static final int IMPORT_STATUS_PLANNED_VALUE
IMPORT_STATUS_PLANNED = 1;- See Also:
- Constant Field Values
-
IMPORT_STATUS_RUNNING_VALUE
public static final int IMPORT_STATUS_RUNNING_VALUE
IMPORT_STATUS_RUNNING = 2;- See Also:
- Constant Field Values
-
IMPORT_STATUS_COMPLETED_VALUE
public static final int IMPORT_STATUS_COMPLETED_VALUE
IMPORT_STATUS_COMPLETED = 3;- See Also:
- Constant Field Values
-
IMPORT_STATUS_FAILED_VALUE
public static final int IMPORT_STATUS_FAILED_VALUE
IMPORT_STATUS_FAILED = 4;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ImportStatus[] 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 (ImportStatus c : ImportStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImportStatus 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
valueOf
@Deprecated public static ImportStatus valueOf(int value)
Deprecated.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
-
forNumber
public static ImportStatus forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<ImportStatus> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-