public static enum Zone.Type extends Enum<Zone.Type>
| Enum Constant and Description |
|---|
ALIAS |
PRIMARY |
SECONDARY |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static Zone.Type |
fromValue(int code) |
static Zone.Type |
fromValue(String type) |
int |
getCode() |
String |
toString() |
static Zone.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Zone.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Zone.Type PRIMARY
public static final Zone.Type SECONDARY
public static final Zone.Type ALIAS
public static final Zone.Type UNRECOGNIZED
public static Zone.Type[] values()
for (Zone.Type c : Zone.Type.values()) System.out.println(c);
public static Zone.Type 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 int getCode()
public static Zone.Type fromValue(int code)
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.