public enum VisibilityType extends Enum<VisibilityType>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="anyone"/> <enumeration value="all-members"/> <enumeration value="connections-only"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALL_MEMBERS |
ANYONE |
CONNECTIONS_ONLY |
Modifier and Type | Method and Description |
---|---|
static VisibilityType |
fromValue(String v) |
String |
value() |
static VisibilityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisibilityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisibilityType ANYONE
public static final VisibilityType ALL_MEMBERS
public static final VisibilityType CONNECTIONS_ONLY
public static VisibilityType[] values()
for (VisibilityType c : VisibilityType.values()) System.out.println(c);
public static VisibilityType 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 value()
public static VisibilityType fromValue(String v)
Apache Camel