public enum PrivacyLevel extends Enum<PrivacyLevel>
| Enum Constant and Description |
|---|
CONNECTION |
PORTAL |
PRIVATE |
PUBLIC |
SINGLE_VRE |
VRES |
| Modifier and Type | Method and Description |
|---|---|
static PrivacyLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrivacyLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrivacyLevel PRIVATE
public static final PrivacyLevel CONNECTION
public static final PrivacyLevel VRES
public static final PrivacyLevel SINGLE_VRE
public static final PrivacyLevel PORTAL
public static final PrivacyLevel PUBLIC
public static PrivacyLevel[] values()
for (PrivacyLevel c : PrivacyLevel.values()) System.out.println(c);
public static PrivacyLevel 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 © 2018. All Rights Reserved.