public enum SubjectType extends java.lang.Enum<SubjectType>
Related specifications:
| Enum Constant and Description |
|---|
PAIRWISE
Pairwise.
|
PUBLIC
Public.
|
| Modifier and Type | Method and Description |
|---|---|
static SubjectType |
parse(java.lang.String s)
Parses a subject identifier type.
|
java.lang.String |
toString()
Returns the string representation of this subject identifier
type.
|
static SubjectType |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<SubjectType>public static SubjectType parse(java.lang.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 © 2014 Connect2id Ltd.. All Rights Reserved.