public enum CardReaderProblem extends Enum<CardReaderProblem>
Modifier and Type | Method and Description |
---|---|
static CardReaderProblem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CardReaderProblem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardReaderProblem BLUETOOTH_ERROR_CONNECTING
public static final CardReaderProblem BLUETOOTH_ADAPTER_NOT_FOUND
public static final CardReaderProblem BLUETOOTH_NO_PERMISSIONS
public static final CardReaderProblem BLUETOOTH_DISABLED
public static final CardReaderProblem BLUETOOTH_READER_NOT_PAIRED
public static final CardReaderProblem BLUETOOTH_PAIRING_REQUEST
public static final CardReaderProblem NETWORK_ERROR_CONNECTING
public static final CardReaderProblem AUDIO_AUDIORECORD_INIT_ERROR
public static final CardReaderProblem AUDIO_AUDIORECORD_NOT_READY
public static final CardReaderProblem AUDIO_POWER_INIT_ERROR
public static final CardReaderProblem AUDIO_READER_NOT_SUPPORTED
public static final CardReaderProblem USB_DEVICE_NOT_FOUND
public static final CardReaderProblem USB_ENDOINTS_NOT_FOUND
public static final CardReaderProblem USB_DEVICE_PERMISSION_DENIED
public static final CardReaderProblem USB_CONNECTION_ERROR
public static CardReaderProblem[] values()
for (CardReaderProblem c : CardReaderProblem.values()) System.out.println(c);
public static CardReaderProblem 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 nullCopyright © 2018. All rights reserved.