@Generated(value="com.sun.tools.xjc.Driver", date="2020-04-17T05:31:42+02:00", comments="JAXB RI v2.2.11") public enum Visibility extends Enum<Visibility>
Java class for visibility.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="visibility">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="private"/>
<enumeration value="limited"/>
<enumeration value="public"/>
<enumeration value="registered-only"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
LIMITED
The data can only be seen by trusted parties
(organizations or people) as indicated by the researcher or
contributor.
|
PRIVATE
The data can only be seen by the researcher or
contributor.
|
PUBLIC
The data can be seen by anyone.
|
REGISTERED_ONLY
The data is shared only with the registered user.
|
| Modifier and Type | Method and Description |
|---|---|
static Visibility |
fromValue(String v) |
String |
value() |
static Visibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Visibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Visibility PRIVATE
public static final Visibility LIMITED
public static final Visibility PUBLIC
public static final Visibility REGISTERED_ONLY
public static Visibility[] values()
for (Visibility c : Visibility.values()) System.out.println(c);
public static Visibility 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 Visibility fromValue(String v)
Copyright © 2020. All rights reserved.