public enum Visibility extends Enum<Visibility>
Enum Constant and Description |
---|
DELETED |
DRAFT |
OK |
PENDING |
PERMANENTLY_DELETED |
REMOTE |
TRANSFERRED |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
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.
|
static Visibility |
valueToEnum(Integer value) |
public static final Visibility PERMANENTLY_DELETED
public static final Visibility DELETED
public static final Visibility DRAFT
public static final Visibility PENDING
public static final Visibility TRANSFERRED
public static final Visibility REMOTE
public static final Visibility OK
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 int getValue()
public static Visibility valueToEnum(Integer value)
Copyright © 2017. All rights reserved.