Enum Gnmi.UpdateResult.Operation
- java.lang.Object
-
- java.lang.Enum<Gnmi.UpdateResult.Operation>
-
- org.opennms.features.openconfig.proto.gnmi.Gnmi.UpdateResult.Operation
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Gnmi.UpdateResult.Operation>
- Enclosing class:
- Gnmi.UpdateResult
public static enum Gnmi.UpdateResult.Operation extends Enum<Gnmi.UpdateResult.Operation> implements com.google.protobuf.ProtocolMessageEnum
The operation that was associated with the Path specified.
Protobuf enumgnmi.UpdateResult.Operation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETE
The result relates to a delete of Path.INVALID
INVALID = 0;
REPLACE
The result relates to a replace of Path.UNRECOGNIZED
UPDATE
The result relates to an update of Path.
-
Field Summary
Fields Modifier and Type Field Description static int
DELETE_VALUE
The result relates to a delete of Path.static int
INVALID_VALUE
INVALID = 0;
static int
REPLACE_VALUE
The result relates to a replace of Path.static int
UPDATE_VALUE
The result relates to an update of Path.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Gnmi.UpdateResult.Operation
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<Gnmi.UpdateResult.Operation>
internalGetValueMap()
static Gnmi.UpdateResult.Operation
valueOf(int value)
Deprecated.static Gnmi.UpdateResult.Operation
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Gnmi.UpdateResult.Operation
valueOf(String name)
Returns the enum constant of this type with the specified name.static Gnmi.UpdateResult.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID
public static final Gnmi.UpdateResult.Operation INVALID
INVALID = 0;
-
DELETE
public static final Gnmi.UpdateResult.Operation DELETE
The result relates to a delete of Path.
DELETE = 1;
-
REPLACE
public static final Gnmi.UpdateResult.Operation REPLACE
The result relates to a replace of Path.
REPLACE = 2;
-
UPDATE
public static final Gnmi.UpdateResult.Operation UPDATE
The result relates to an update of Path.
UPDATE = 3;
-
UNRECOGNIZED
public static final Gnmi.UpdateResult.Operation UNRECOGNIZED
-
-
Field Detail
-
INVALID_VALUE
public static final int INVALID_VALUE
INVALID = 0;
- See Also:
- Constant Field Values
-
DELETE_VALUE
public static final int DELETE_VALUE
The result relates to a delete of Path.
DELETE = 1;
- See Also:
- Constant Field Values
-
REPLACE_VALUE
public static final int REPLACE_VALUE
The result relates to a replace of Path.
REPLACE = 2;
- See Also:
- Constant Field Values
-
UPDATE_VALUE
public static final int UPDATE_VALUE
The result relates to an update of Path.
UPDATE = 3;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Gnmi.UpdateResult.Operation[] 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 (Gnmi.UpdateResult.Operation c : Gnmi.UpdateResult.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Gnmi.UpdateResult.Operation valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static Gnmi.UpdateResult.Operation 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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
public static Gnmi.UpdateResult.Operation forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<Gnmi.UpdateResult.Operation> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static Gnmi.UpdateResult.Operation valueOf(com.google.protobuf.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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-