public enum Attestation extends Enum<Attestation>
Modifier and Type | Method and Description |
---|---|
static Attestation |
of(String string) |
String |
toString() |
static Attestation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Attestation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attestation NONE
public static final Attestation INDIRECT
public static final Attestation DIRECT
public static Attestation[] values()
for (Attestation c : Attestation.values()) System.out.println(c);
public static Attestation 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 toString()
toString
in class Enum<Attestation>
public static Attestation of(String string)
Copyright © 2021 Eclipse. All rights reserved.