Enum ARAnchorEvent.Kind

java.lang.Object
java.lang.Enum<ARAnchorEvent.Kind>
com.codename1.ar.ARAnchorEvent.Kind
All Implemented Interfaces:
Comparable<ARAnchorEvent.Kind>
Enclosing class:
ARAnchorEvent

public static enum ARAnchorEvent.Kind extends Enum<ARAnchorEvent.Kind>
The kind of change that occurred.
  • Enum Constant Details

    • ADDED

      public static final ARAnchorEvent.Kind ADDED
      The anchor was added - either created by the application or recognized by the platform (image or face).
    • UPDATED

      public static final ARAnchorEvent.Kind UPDATED
      The anchor's pose or tracking state was refined.
    • REMOVED

      public static final ARAnchorEvent.Kind REMOVED
      The anchor was removed and is now detached.
  • Method Details

    • values

      public static ARAnchorEvent.Kind[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ARAnchorEvent.Kind valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null