Package akka.remote
Enum SystemMessageFormats.SystemMessage.Type
- java.lang.Object
-
- java.lang.Enum<SystemMessageFormats.SystemMessage.Type>
-
- akka.remote.SystemMessageFormats.SystemMessage.Type
-
- All Implemented Interfaces:
akka.protobufv3.internal.Internal.EnumLite
,akka.protobufv3.internal.ProtocolMessageEnum
,java.io.Serializable
,java.lang.Comparable<SystemMessageFormats.SystemMessage.Type>
- Enclosing class:
- SystemMessageFormats.SystemMessage
public static enum SystemMessageFormats.SystemMessage.Type extends java.lang.Enum<SystemMessageFormats.SystemMessage.Type> implements akka.protobufv3.internal.ProtocolMessageEnum
Protobuf enumSystemMessage.Type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATE
CREATE = 0;
DEATHWATCH_NOTIFICATION
DEATHWATCH_NOTIFICATION = 9;
FAILED
FAILED = 8;
RECREATE
RECREATE = 1;
RESUME
RESUME = 3;
SUPERVISE
SUPERVISE = 5;
SUSPEND
SUSPEND = 2;
TERMINATE
TERMINATE = 4;
UNWATCH
UNWATCH = 7;
WATCH
WATCH = 6;
-
Field Summary
Fields Modifier and Type Field Description static int
CREATE_VALUE
CREATE = 0;
static int
DEATHWATCH_NOTIFICATION_VALUE
DEATHWATCH_NOTIFICATION = 9;
static int
FAILED_VALUE
FAILED = 8;
static int
RECREATE_VALUE
RECREATE = 1;
static int
RESUME_VALUE
RESUME = 3;
static int
SUPERVISE_VALUE
SUPERVISE = 5;
static int
SUSPEND_VALUE
SUSPEND = 2;
static int
TERMINATE_VALUE
TERMINATE = 4;
static int
UNWATCH_VALUE
UNWATCH = 7;
static int
WATCH_VALUE
WATCH = 6;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SystemMessageFormats.SystemMessage.Type
forNumber(int value)
static akka.protobufv3.internal.Descriptors.EnumDescriptor
getDescriptor()
akka.protobufv3.internal.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
akka.protobufv3.internal.Descriptors.EnumValueDescriptor
getValueDescriptor()
static akka.protobufv3.internal.Internal.EnumLiteMap<SystemMessageFormats.SystemMessage.Type>
internalGetValueMap()
static SystemMessageFormats.SystemMessage.Type
valueOf(int value)
Deprecated.static SystemMessageFormats.SystemMessage.Type
valueOf(akka.protobufv3.internal.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static SystemMessageFormats.SystemMessage.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SystemMessageFormats.SystemMessage.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final SystemMessageFormats.SystemMessage.Type CREATE
CREATE = 0;
-
RECREATE
public static final SystemMessageFormats.SystemMessage.Type RECREATE
RECREATE = 1;
-
SUSPEND
public static final SystemMessageFormats.SystemMessage.Type SUSPEND
SUSPEND = 2;
-
RESUME
public static final SystemMessageFormats.SystemMessage.Type RESUME
RESUME = 3;
-
TERMINATE
public static final SystemMessageFormats.SystemMessage.Type TERMINATE
TERMINATE = 4;
-
SUPERVISE
public static final SystemMessageFormats.SystemMessage.Type SUPERVISE
SUPERVISE = 5;
-
WATCH
public static final SystemMessageFormats.SystemMessage.Type WATCH
WATCH = 6;
-
UNWATCH
public static final SystemMessageFormats.SystemMessage.Type UNWATCH
UNWATCH = 7;
-
FAILED
public static final SystemMessageFormats.SystemMessage.Type FAILED
FAILED = 8;
-
DEATHWATCH_NOTIFICATION
public static final SystemMessageFormats.SystemMessage.Type DEATHWATCH_NOTIFICATION
DEATHWATCH_NOTIFICATION = 9;
-
-
Field Detail
-
CREATE_VALUE
public static final int CREATE_VALUE
CREATE = 0;
- See Also:
- Constant Field Values
-
RECREATE_VALUE
public static final int RECREATE_VALUE
RECREATE = 1;
- See Also:
- Constant Field Values
-
SUSPEND_VALUE
public static final int SUSPEND_VALUE
SUSPEND = 2;
- See Also:
- Constant Field Values
-
RESUME_VALUE
public static final int RESUME_VALUE
RESUME = 3;
- See Also:
- Constant Field Values
-
TERMINATE_VALUE
public static final int TERMINATE_VALUE
TERMINATE = 4;
- See Also:
- Constant Field Values
-
SUPERVISE_VALUE
public static final int SUPERVISE_VALUE
SUPERVISE = 5;
- See Also:
- Constant Field Values
-
WATCH_VALUE
public static final int WATCH_VALUE
WATCH = 6;
- See Also:
- Constant Field Values
-
UNWATCH_VALUE
public static final int UNWATCH_VALUE
UNWATCH = 7;
- See Also:
- Constant Field Values
-
FAILED_VALUE
public static final int FAILED_VALUE
FAILED = 8;
- See Also:
- Constant Field Values
-
DEATHWATCH_NOTIFICATION_VALUE
public static final int DEATHWATCH_NOTIFICATION_VALUE
DEATHWATCH_NOTIFICATION = 9;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static SystemMessageFormats.SystemMessage.Type[] 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 (SystemMessageFormats.SystemMessage.Type c : SystemMessageFormats.SystemMessage.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemMessageFormats.SystemMessage.Type 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:
getNumber
in interfaceakka.protobufv3.internal.Internal.EnumLite
- Specified by:
getNumber
in interfaceakka.protobufv3.internal.ProtocolMessageEnum
-
valueOf
@Deprecated public static SystemMessageFormats.SystemMessage.Type 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 SystemMessageFormats.SystemMessage.Type forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static akka.protobufv3.internal.Internal.EnumLiteMap<SystemMessageFormats.SystemMessage.Type> internalGetValueMap()
-
getValueDescriptor
public final akka.protobufv3.internal.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfaceakka.protobufv3.internal.ProtocolMessageEnum
-
getDescriptorForType
public final akka.protobufv3.internal.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfaceakka.protobufv3.internal.ProtocolMessageEnum
-
getDescriptor
public static final akka.protobufv3.internal.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static SystemMessageFormats.SystemMessage.Type valueOf(akka.protobufv3.internal.Descriptors.EnumValueDescriptor desc)
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:
desc
- 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
-
-