public static enum AppEntity.Status extends Enum<AppEntity.Status>
| Modifier and Type | Method and Description |
|---|---|
static AppEntity.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppEntity.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppEntity.Status ACTIVE
public static final AppEntity.Status DEACTIVE
public static final AppEntity.Status INSTALLED
public static AppEntity.Status[] values()
for (AppEntity.Status c : AppEntity.Status.values()) System.out.println(c);
public static AppEntity.Status 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–2016 eXo Platform SAS. All rights reserved.