public enum SdlInterfaceAvailability extends Enum<SdlInterfaceAvailability>
| Enum Constant and Description |
|---|
SDL_INTERFACE_AVAILABLE |
SDL_INTERFACE_UNAVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
static SdlInterfaceAvailability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SdlInterfaceAvailability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SdlInterfaceAvailability SDL_INTERFACE_AVAILABLE
public static final SdlInterfaceAvailability SDL_INTERFACE_UNAVAILABLE
public static SdlInterfaceAvailability[] values()
for (SdlInterfaceAvailability c : SdlInterfaceAvailability.values()) System.out.println(c);
public static SdlInterfaceAvailability 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 null