public enum SpaceCategoryEnum extends java.lang.Enum<SpaceCategoryEnum>
Enum Constant and Description |
---|
ALL |
FAVOURITES |
GLOBAL |
PERSONAL |
Modifier and Type | Method and Description |
---|---|
static SpaceCategoryEnum |
get(java.lang.String rep) |
java.lang.String |
getRepresentation() |
java.lang.String |
toString()
The String representation of the enum.
|
static SpaceCategoryEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpaceCategoryEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpaceCategoryEnum ALL
public static final SpaceCategoryEnum FAVOURITES
public static final SpaceCategoryEnum GLOBAL
public static final SpaceCategoryEnum PERSONAL
public static SpaceCategoryEnum[] values()
for (SpaceCategoryEnum c : SpaceCategoryEnum.values()) System.out.println(c);
public static SpaceCategoryEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getRepresentation()
public java.lang.String toString()
toString
in class java.lang.Enum<SpaceCategoryEnum>
public static SpaceCategoryEnum get(java.lang.String rep)
rep
- the String representation of the enum.Copyright © 2003-2014 Atlassian. All Rights Reserved.