Enum AugmentedRealityService.Availability
- java.lang.Object
-
- java.lang.Enum<AugmentedRealityService.Availability>
-
- com.gluonhq.attach.augmentedreality.AugmentedRealityService.Availability
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AugmentedRealityService.Availability>
- Enclosing interface:
- AugmentedRealityService
public static enum AugmentedRealityService.Availability extends java.lang.Enum<AugmentedRealityService.Availability>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AR_NOT_SUPPORTED
AR_SUPPORTED
ARCORE_NOT_INSTALLED
ARCORE_OUTDATED
IOS_NOT_UPDATED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AugmentedRealityService.Availability
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AugmentedRealityService.Availability[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AR_NOT_SUPPORTED
public static final AugmentedRealityService.Availability AR_NOT_SUPPORTED
-
ARCORE_NOT_INSTALLED
public static final AugmentedRealityService.Availability ARCORE_NOT_INSTALLED
-
ARCORE_OUTDATED
public static final AugmentedRealityService.Availability ARCORE_OUTDATED
-
IOS_NOT_UPDATED
public static final AugmentedRealityService.Availability IOS_NOT_UPDATED
-
AR_SUPPORTED
public static final AugmentedRealityService.Availability AR_SUPPORTED
-
-
Method Detail
-
values
public static AugmentedRealityService.Availability[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AugmentedRealityService.Availability c : AugmentedRealityService.Availability.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AugmentedRealityService.Availability valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-