public static enum Domain.Format extends Enum<Domain.Format>
Enum Constant and Description |
---|
BIND_9 |
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static Domain.Format |
fromValue(String format) |
static Domain.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Domain.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Domain.Format BIND_9
public static final Domain.Format UNRECOGNIZED
public static Domain.Format[] values()
for (Domain.Format c : Domain.Format.values()) System.out.println(c);
public static Domain.Format 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 Domain.Format fromValue(String format)
Copyright © 2009-2013 jclouds. All Rights Reserved.