public enum CertificateVisibility extends Enum<CertificateVisibility>
| Enum Constant and Description |
|---|
REMOTE_USER
Enum value remoteUser.
|
START_TASK
Enum value startTask.
|
TASK
Enum value task.
|
| Modifier and Type | Method and Description |
|---|---|
static CertificateVisibility |
fromString(String value)
Parses a serialized value to a CertificateVisibility instance.
|
String |
toString() |
static CertificateVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateVisibility START_TASK
public static final CertificateVisibility TASK
public static final CertificateVisibility REMOTE_USER
public static CertificateVisibility[] values()
for (CertificateVisibility c : CertificateVisibility.values()) System.out.println(c);
public static CertificateVisibility 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 static CertificateVisibility fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<CertificateVisibility>Copyright © 2019. All rights reserved.