Enum Endpoint.Type
- java.lang.Object
-
- java.lang.Enum<Endpoint.Type>
-
- com.oracle.bmc.vnmonitoring.model.Endpoint.Type
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<Endpoint.Type>
- Enclosing class:
- Endpoint
public static enum Endpoint.Type extends Enum<Endpoint.Type> implements BmcEnum
The type of the Endpoint.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ComputeInstance
IpAddress
LoadBalancer
LoadBalancerListener
NetworkLoadBalancer
NetworkLoadBalancerListener
OnPrem
Subnet
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.Vlan
Vnic
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Endpoint.Type
create(String key)
String
getValue()
static Endpoint.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static Endpoint.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IpAddress
public static final Endpoint.Type IpAddress
-
Subnet
public static final Endpoint.Type Subnet
-
ComputeInstance
public static final Endpoint.Type ComputeInstance
-
Vnic
public static final Endpoint.Type Vnic
-
LoadBalancer
public static final Endpoint.Type LoadBalancer
-
LoadBalancerListener
public static final Endpoint.Type LoadBalancerListener
-
NetworkLoadBalancer
public static final Endpoint.Type NetworkLoadBalancer
-
NetworkLoadBalancerListener
public static final Endpoint.Type NetworkLoadBalancerListener
-
Vlan
public static final Endpoint.Type Vlan
-
OnPrem
public static final Endpoint.Type OnPrem
-
UnknownEnumValue
public static final Endpoint.Type UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static Endpoint.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 (Endpoint.Type c : Endpoint.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 Endpoint.Type 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
-
create
public static Endpoint.Type create(String key)
-
-