Enum TetherEndpoint
- java.lang.Object
-
- java.lang.Enum<TetherEndpoint>
-
- com.google.cloud.apigeeconnect.v1.TetherEndpoint
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<TetherEndpoint>
public enum TetherEndpoint extends Enum<TetherEndpoint> implements com.google.protobuf.ProtocolMessageEnum
Endpoint indicates where the messages will be delivered.
Protobuf enumgoogle.cloud.apigeeconnect.v1.TetherEndpoint
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APIGEE_MART
Apigee MART endpoint.APIGEE_MINT_RATING
Apigee Mint Rating endpoint.APIGEE_RUNTIME
Apigee Runtime endpoint.TETHER_ENDPOINT_UNSPECIFIED
Unspecified tether endpoint.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
APIGEE_MART_VALUE
Apigee MART endpoint.static int
APIGEE_MINT_RATING_VALUE
Apigee Mint Rating endpoint.static int
APIGEE_RUNTIME_VALUE
Apigee Runtime endpoint.static int
TETHER_ENDPOINT_UNSPECIFIED_VALUE
Unspecified tether endpoint.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static TetherEndpoint
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<TetherEndpoint>
internalGetValueMap()
static TetherEndpoint
valueOf(int value)
Deprecated.static TetherEndpoint
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static TetherEndpoint
valueOf(String name)
Returns the enum constant of this type with the specified name.static TetherEndpoint[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TETHER_ENDPOINT_UNSPECIFIED
public static final TetherEndpoint TETHER_ENDPOINT_UNSPECIFIED
Unspecified tether endpoint.
TETHER_ENDPOINT_UNSPECIFIED = 0;
-
APIGEE_MART
public static final TetherEndpoint APIGEE_MART
Apigee MART endpoint.
APIGEE_MART = 1;
-
APIGEE_RUNTIME
public static final TetherEndpoint APIGEE_RUNTIME
Apigee Runtime endpoint.
APIGEE_RUNTIME = 2;
-
APIGEE_MINT_RATING
public static final TetherEndpoint APIGEE_MINT_RATING
Apigee Mint Rating endpoint.
APIGEE_MINT_RATING = 3;
-
UNRECOGNIZED
public static final TetherEndpoint UNRECOGNIZED
-
-
Field Detail
-
TETHER_ENDPOINT_UNSPECIFIED_VALUE
public static final int TETHER_ENDPOINT_UNSPECIFIED_VALUE
Unspecified tether endpoint.
TETHER_ENDPOINT_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
APIGEE_MART_VALUE
public static final int APIGEE_MART_VALUE
Apigee MART endpoint.
APIGEE_MART = 1;
- See Also:
- Constant Field Values
-
APIGEE_RUNTIME_VALUE
public static final int APIGEE_RUNTIME_VALUE
Apigee Runtime endpoint.
APIGEE_RUNTIME = 2;
- See Also:
- Constant Field Values
-
APIGEE_MINT_RATING_VALUE
public static final int APIGEE_MINT_RATING_VALUE
Apigee Mint Rating endpoint.
APIGEE_MINT_RATING = 3;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static TetherEndpoint[] 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 (TetherEndpoint c : TetherEndpoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TetherEndpoint 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 TetherEndpoint 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 TetherEndpoint 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<TetherEndpoint> 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 TetherEndpoint 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
-
-