public static enum TLD.TLDType extends Enum<TLD.TLDType>
| Enum Constant and Description |
|---|
COUNTRY |
GENERIC |
INFRASTRUCTURE |
LOCAL |
| Modifier and Type | Method and Description |
|---|---|
static TLD.TLDType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TLD.TLDType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TLD.TLDType INFRASTRUCTURE
public static final TLD.TLDType LOCAL
public static final TLD.TLDType GENERIC
public static final TLD.TLDType COUNTRY
public static TLD.TLDType[] values()
for (TLD.TLDType c : TLD.TLDType.values()) System.out.println(c);
public static TLD.TLDType 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 nullCopyright © 2016. All rights reserved.