public enum EChangeLogCategory extends Enum<EChangeLogCategory> implements IHasID<String>
| Enum Constant and Description |
|---|
API |
BUSINESS_LOGIC |
DATA |
FEATURE |
PERFORMANCE |
SECURITY |
TECH |
TEST |
USER_INTERFACE |
| Modifier and Type | Method and Description |
|---|---|
static EChangeLogCategory |
getFromIDOrDefault(String sID,
EChangeLogCategory eDefault) |
static EChangeLogCategory |
getFromIDOrNull(String sID) |
String |
getID()
Get the unique ID of this object.
|
static EChangeLogCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EChangeLogCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EChangeLogCategory API
public static final EChangeLogCategory TECH
public static final EChangeLogCategory USER_INTERFACE
public static final EChangeLogCategory FEATURE
public static final EChangeLogCategory BUSINESS_LOGIC
public static final EChangeLogCategory SECURITY
public static final EChangeLogCategory TEST
public static final EChangeLogCategory DATA
public static final EChangeLogCategory PERFORMANCE
public static EChangeLogCategory[] values()
for (EChangeLogCategory c : EChangeLogCategory.values()) System.out.println(c);
public static EChangeLogCategory 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 null@Nonnull @Nonempty public String getID()
IHasIDString than the
returned value must match an XML NMToken expression (so e.g. no ':' in the
ID)!@Nullable public static EChangeLogCategory getFromIDOrNull(@Nullable String sID)
@Nullable public static EChangeLogCategory getFromIDOrDefault(@Nullable String sID, @Nullable EChangeLogCategory eDefault)
Copyright © 2014–2016 Philip Helger. All rights reserved.