public static enum Space.Type extends Enum<Space.Type>
Modifier and Type | Method and 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.
|
public static final Space.Type GLOBAL
public static final Space.Type PERSONAL
public static Space.Type[] values()
for (Space.Type c : Space.Type.values()) System.out.println(c);
public static Space.Type 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 nullpublic String toString()
toString
in class Enum<Space.Type>
public static Space.Type fromString(String type)
Copyright © 2003–2017 Atlassian. All rights reserved.