public enum SubjectType extends Enum<SubjectType>
Related specifications:
| Enum Constant and Description |
|---|
PAIRWISE
Pairwise.
|
PUBLIC
Public.
|
| Modifier and Type | Method and Description |
|---|---|
static SubjectType |
parse(String s)
Parses a subject identifier type.
|
String |
toString()
Returns the string representation of this subject identifier
type.
|
static SubjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubjectType PAIRWISE
public static final SubjectType PUBLIC
public static SubjectType[] values()
for (SubjectType c : SubjectType.values()) System.out.println(c);
public static SubjectType 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<SubjectType>public static SubjectType parse(String s) throws ParseException
s - The string to parse.ParseException - If the parsed string is null or
doesn't match a subject identifier type.Copyright © 2016 Connect2id Ltd.. All Rights Reserved.