public enum HostNameType extends Enum<HostNameType>
Enum Constant and Description |
---|
MANAGED
Enum value Managed.
|
VERIFIED
Enum value Verified.
|
Modifier and Type | Method and Description |
---|---|
static HostNameType |
fromString(String value)
Parses a serialized value to a HostNameType instance.
|
String |
toString() |
static HostNameType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HostNameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostNameType VERIFIED
public static final HostNameType MANAGED
public static HostNameType[] values()
for (HostNameType c : HostNameType.values()) System.out.println(c);
public static HostNameType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static HostNameType fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<HostNameType>
Copyright © 2019. All rights reserved.