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