public enum WikiType extends Enum<WikiType>
| Enum Constant and Description |
|---|
GROUP
Group wiki shared in a group
|
PORTAL
Portal wiki accessible from the portal
|
USER
Personal wiki
|
| Modifier and Type | Method and Description |
|---|---|
static WikiType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WikiType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WikiType PORTAL
public static final WikiType GROUP
public static final WikiType USER
public static WikiType[] values()
for (WikiType c : WikiType.values()) System.out.println(c);
public static WikiType 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–2016 eXo Platform SAS. All rights reserved.