Package com.google.cloud.compute.v1
Enum Firewall.Direction
- java.lang.Object
-
- java.lang.Enum<Firewall.Direction>
-
- com.google.cloud.compute.v1.Firewall.Direction
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Firewall.Direction>
- Enclosing class:
- Firewall
public static enum Firewall.Direction extends Enum<Firewall.Direction> implements com.google.protobuf.ProtocolMessageEnum
Direction of traffic to which this firewall applies, either `INGRESS` or `EGRESS`. The default is `INGRESS`. For `EGRESS` traffic, you cannot specify the sourceTags fields.
Protobuf enumgoogle.cloud.compute.v1.Firewall.Direction
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EGRESS
Indicates that firewall should apply to outgoing traffic.INGRESS
Indicates that firewall should apply to incoming traffic.UNDEFINED_DIRECTION
A value indicating that the enum field is not set.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
EGRESS_VALUE
Indicates that firewall should apply to outgoing traffic.static int
INGRESS_VALUE
Indicates that firewall should apply to incoming traffic.static int
UNDEFINED_DIRECTION_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 Firewall.Direction
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<Firewall.Direction>
internalGetValueMap()
static Firewall.Direction
valueOf(int value)
Deprecated.static Firewall.Direction
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Firewall.Direction
valueOf(String name)
Returns the enum constant of this type with the specified name.static Firewall.Direction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED_DIRECTION
public static final Firewall.Direction UNDEFINED_DIRECTION
A value indicating that the enum field is not set.
UNDEFINED_DIRECTION = 0;
-
EGRESS
public static final Firewall.Direction EGRESS
Indicates that firewall should apply to outgoing traffic.
EGRESS = 432880501;
-
INGRESS
public static final Firewall.Direction INGRESS
Indicates that firewall should apply to incoming traffic.
INGRESS = 516931221;
-
UNRECOGNIZED
public static final Firewall.Direction UNRECOGNIZED
-
-
Field Detail
-
UNDEFINED_DIRECTION_VALUE
public static final int UNDEFINED_DIRECTION_VALUE
A value indicating that the enum field is not set.
UNDEFINED_DIRECTION = 0;
- See Also:
- Constant Field Values
-
EGRESS_VALUE
public static final int EGRESS_VALUE
Indicates that firewall should apply to outgoing traffic.
EGRESS = 432880501;
- See Also:
- Constant Field Values
-
INGRESS_VALUE
public static final int INGRESS_VALUE
Indicates that firewall should apply to incoming traffic.
INGRESS = 516931221;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Firewall.Direction[] 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 (Firewall.Direction c : Firewall.Direction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Firewall.Direction 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 Firewall.Direction 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 Firewall.Direction 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<Firewall.Direction> 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 Firewall.Direction 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
-
-