public enum EntityStatus extends Enum<EntityStatus>
Enum Constant and Description |
---|
CHECKEDOUT
The entity is checked out and only available to the user who has it checked out.
|
INPROGRESS
The entity is in development and only available to those who have the appropriate privileges.
|
PUBLISHED
The entity is available to all users.
|
Modifier and Type | Method and Description |
---|---|
static EntityStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityStatus PUBLISHED
public static final EntityStatus INPROGRESS
public static final EntityStatus CHECKEDOUT
public static EntityStatus[] values()
for (EntityStatus c : EntityStatus.values()) System.out.println(c);
public static EntityStatus 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<i>Copyright (c) 2022, SAS Institute Inc., Cary, NC, USA</i>