@Generated(value="org.nuiton.eugene.java.JavaEnumerationTransformer", date="Fri Jan 09 10:50:48 UTC 2015") public enum Privacy extends Enum<Privacy>
| Enum Constant and Description |
|---|
PRIVATE |
PUBLIC |
RESTRICTED |
| Modifier and Type | Method and Description |
|---|---|
static Privacy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Privacy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Privacy PRIVATE
public static final Privacy PUBLIC
public static final Privacy RESTRICTED
public static Privacy[] values()
for (Privacy c : Privacy.values()) System.out.println(c);
public static Privacy 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 © 2014–2015 Ifremer. All rights reserved.