Enum Status
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNCLEARThe check ran but its result was inconclusive, or the check does not distinguish more specific outcomes.
PASSThe check ran and confirmed the expected condition.
FAILThe check ran and did not confirm the expected condition (potential injection signal).
UNSUPPORTEDThe 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_COMPLETEThe 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 StatusvalueOf(String value)Returns the enum constant of this type with the specified name. final StringgetValue()final EnumEntries<Status>getEntries()-
-
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.)
-
getEntries
final EnumEntries<Status> getEntries()
-
-
-
-