public static enum Client.SubjectType extends Enum<Client.SubjectType>
Enum Constant and Description |
---|
PAIRWISE
Pairwise Subject Type.
|
PUBLIC
Public Subject Type.
|
Modifier and Type | Method and Description |
---|---|
static Client.SubjectType |
fromString(String type)
Translates a String type into a subject type.
|
String |
getType()
Gets the subject type.
|
String |
toString() |
static Client.SubjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Client.SubjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Client.SubjectType PAIRWISE
public static final Client.SubjectType PUBLIC
public static Client.SubjectType[] values()
for (Client.SubjectType c : Client.SubjectType.values()) System.out.println(c);
public static Client.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 getType()
public static Client.SubjectType fromString(String type)
type
- The string to translate into a subject type.null
.public String toString()
toString
in class Enum<Client.SubjectType>
Copyright © 2010–2025 Open Identity Platform Community. All rights reserved.