public enum Owner extends Enum<Owner>
| Enum Constant and Description |
|---|
CST |
CUSTOMER |
CWI |
DECISION |
DOC |
EMPTY |
ENGINEERING |
ITOP |
MAINTENANCE |
PM |
RENEWAL |
SUPPORT |
| Modifier and Type | Method and Description |
|---|---|
static Owner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Owner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Owner SUPPORT
public static final Owner CST
public static final Owner MAINTENANCE
public static final Owner PM
public static final Owner ENGINEERING
public static final Owner ITOP
public static final Owner CUSTOMER
public static final Owner RENEWAL
public static final Owner DECISION
public static final Owner CWI
public static final Owner DOC
public static final Owner EMPTY
public static Owner[] values()
for (Owner c : Owner.values()) System.out.println(c);
public static Owner 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 © 2003–2018 eXo Platform SAS. All rights reserved.