Enum Status

  • All Implemented Interfaces:
    java.io.Serializable , kotlin.Comparable

    
    public enum Status
    extends Enum<Status>
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      UNCLEAR

      The check ran but its result was inconclusive, or the check does not distinguish more specific outcomes.

      PASS

      The check ran and confirmed the expected condition.

      FAIL

      The check ran and did not confirm the expected condition (potential injection signal).

      UNSUPPORTED

      The check could not run because the device does not support the underlying capability (e.g. no zoom, no exposure compensation). A benign, known-device-population signal.

      Since 5.51.0

      COULD_NOT_COMPLETE

      The check was attempted but threw before producing a result (e.g. camera-access failure, timing issue). Treated with more suspicion than UNCLEAR since an attacker could deliberately starve the check to suppress its result.

      Since 5.51.0

    • Method Summary

      Modifier and Type Method Description
      final Array<Status> values() Returns an array containing the constants of this enum type, in the order they're declared.
      final Status valueOf(String value) Returns the enum constant of this type with the specified name.
      final String getValue()
      final EnumEntries<Status> getEntries()
      • Methods inherited from class kotlin.Enum

        getName, getOrdinal
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • values

         final Array<Status> values()

        Returns an array containing the constants of this enum type, in the order they're declared.

        This method may be used to iterate over the constants.

      • valueOf

         final Status valueOf(String value)

        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.)