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