@Generated(value="org.jsonschema2pojo") public static enum Contact.Type extends Enum<Contact.Type>
| Enum Constant and Description |
|---|
GENERAL |
SECURITY |
SYSADMIN |
USERSUPPORT |
| Modifier and Type | Method and Description |
|---|---|
static Contact.Type |
fromValue(String value) |
String |
toString() |
static Contact.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Contact.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Contact.Type GENERAL
public static final Contact.Type SECURITY
public static final Contact.Type SYSADMIN
public static final Contact.Type USERSUPPORT
public static Contact.Type[] values()
for (Contact.Type c : Contact.Type.values()) System.out.println(c);
public static Contact.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 String toString()
toString in class Enum<Contact.Type>public static Contact.Type fromValue(String value)
Copyright © 2011–2014 The Apache Software Foundation. All rights reserved.