Package com.atlassian.confluence.it
Enum Space.Type
- java.lang.Object
-
- java.lang.Enum<Space.Type>
-
- com.atlassian.confluence.it.Space.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<Space.Type>
- Enclosing class:
- Space
public static enum Space.Type extends Enum<Space.Type>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Space.Type
fromString(String type)
String
toString()
static Space.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static Space.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GLOBAL
public static final Space.Type GLOBAL
-
PERSONAL
public static final Space.Type PERSONAL
-
-
Method Detail
-
values
public static Space.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Space.Type c : Space.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Space.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<Space.Type>
-
fromString
public static Space.Type fromString(String type)
-
-