protected static enum Subject.SubjectField extends Enum<Subject.SubjectField> implements EnumType
| Enum Constant and Description |
|---|
BASE_CERTIFICATE_ID |
SUBJECT_NAME |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
int |
getValue() |
static Subject.SubjectField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Subject.SubjectField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Subject.SubjectField BASE_CERTIFICATE_ID
public static final Subject.SubjectField SUBJECT_NAME
public static Subject.SubjectField[] values()
for (Subject.SubjectField c : Subject.SubjectField.values()) System.out.println(c);
public static Subject.SubjectField 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 nullCopyright © 2014–2016 The Apache Software Foundation. All rights reserved.