public enum ServiceNowVersion extends Enum<ServiceNowVersion>
Enum Constant and Description |
---|
EUREKA |
FUJI |
GENEVA |
HELSINKI |
ISTANBUL |
LONDON |
NEW_YORK |
Modifier and Type | Method and Description |
---|---|
static ServiceNowVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceNowVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceNowVersion EUREKA
public static final ServiceNowVersion FUJI
public static final ServiceNowVersion GENEVA
public static final ServiceNowVersion HELSINKI
public static final ServiceNowVersion ISTANBUL
public static final ServiceNowVersion LONDON
public static final ServiceNowVersion NEW_YORK
public static ServiceNowVersion[] values()
for (ServiceNowVersion c : ServiceNowVersion.values()) System.out.println(c);
public static ServiceNowVersion 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 © 2010–2019. All rights reserved.