Package com.google.cloud.compute.v1
Enum Route.RouteStatus
- java.lang.Object
-
- java.lang.Enum<Route.RouteStatus>
-
- com.google.cloud.compute.v1.Route.RouteStatus
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Route.RouteStatus>
- Enclosing class:
- Route
public static enum Route.RouteStatus extends Enum<Route.RouteStatus> implements com.google.protobuf.ProtocolMessageEnum
[Output only] The status of the route.
Protobuf enumgoogle.cloud.compute.v1.Route.RouteStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE
This route is processed and active.DROPPED
The route is dropped due to the VPC exceeding the dynamic route limit.INACTIVE
This route is processed but inactive due to failure from the backend.PENDING
This route is being processed internally.UNDEFINED_ROUTE_STATUS
A value indicating that the enum field is not set.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
ACTIVE_VALUE
This route is processed and active.static int
DROPPED_VALUE
The route is dropped due to the VPC exceeding the dynamic route limit.static int
INACTIVE_VALUE
This route is processed but inactive due to failure from the backend.static int
PENDING_VALUE
This route is being processed internally.static int
UNDEFINED_ROUTE_STATUS_VALUE
A value indicating that the enum field is not set.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Route.RouteStatus
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<Route.RouteStatus>
internalGetValueMap()
static Route.RouteStatus
valueOf(int value)
Deprecated.static Route.RouteStatus
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Route.RouteStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static Route.RouteStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED_ROUTE_STATUS
public static final Route.RouteStatus UNDEFINED_ROUTE_STATUS
A value indicating that the enum field is not set.
UNDEFINED_ROUTE_STATUS = 0;
-
ACTIVE
public static final Route.RouteStatus ACTIVE
This route is processed and active.
ACTIVE = 314733318;
-
DROPPED
public static final Route.RouteStatus DROPPED
The route is dropped due to the VPC exceeding the dynamic route limit. For dynamic route limit, please refer to the Learned route example
DROPPED = 496235424;
-
INACTIVE
public static final Route.RouteStatus INACTIVE
This route is processed but inactive due to failure from the backend. The backend may have rejected the route
INACTIVE = 270421099;
-
PENDING
public static final Route.RouteStatus PENDING
This route is being processed internally. The status will change once processed.
PENDING = 35394935;
-
UNRECOGNIZED
public static final Route.RouteStatus UNRECOGNIZED
-
-
Field Detail
-
UNDEFINED_ROUTE_STATUS_VALUE
public static final int UNDEFINED_ROUTE_STATUS_VALUE
A value indicating that the enum field is not set.
UNDEFINED_ROUTE_STATUS = 0;
- See Also:
- Constant Field Values
-
ACTIVE_VALUE
public static final int ACTIVE_VALUE
This route is processed and active.
ACTIVE = 314733318;
- See Also:
- Constant Field Values
-
DROPPED_VALUE
public static final int DROPPED_VALUE
The route is dropped due to the VPC exceeding the dynamic route limit. For dynamic route limit, please refer to the Learned route example
DROPPED = 496235424;
- See Also:
- Constant Field Values
-
INACTIVE_VALUE
public static final int INACTIVE_VALUE
This route is processed but inactive due to failure from the backend. The backend may have rejected the route
INACTIVE = 270421099;
- See Also:
- Constant Field Values
-
PENDING_VALUE
public static final int PENDING_VALUE
This route is being processed internally. The status will change once processed.
PENDING = 35394935;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Route.RouteStatus[] 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 (Route.RouteStatus c : Route.RouteStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Route.RouteStatus 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 Route.RouteStatus 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 Route.RouteStatus 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 com.google.protobuf.Internal.EnumLiteMap<Route.RouteStatus> 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 Route.RouteStatus 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
-
-