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