Enum SelfieScan.FaceAuthMode
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum SelfieScan.FaceAuthMode extends Enum<SelfieScan.FaceAuthMode>
Controls where face detection and liveness checks run during a SelfieScan face-login session.
Prefer the dedicated com.incode.welcome_sdk.modules.FaceAuthentication module for new integrations. See Face Authentication.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<SelfieScan.FaceAuthMode>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description SERVERFace detection and liveness checks are performed on Incode's servers.
Deprecated in SDK 5.49.0. Use the FaceAuthentication module instead. See Getting Started with Face Authentication.
LOCALFace detection and liveness checks run entirely on-device (offline face login). The SDK may still send authentication stats depending on configuration. This mode is unaffected by the
FaceAuthMode.SERVERdeprecation and remains fully supported.Since: 5.0.0
-
Method Summary
Modifier and Type Method Description final SelfieScan.FaceAuthModevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<SelfieScan.FaceAuthMode>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<SelfieScan.FaceAuthMode>getEntries()Controls where face detection and liveness checks run during a SelfieScan face-login session. -
-
Method Detail
-
valueOf
final SelfieScan.FaceAuthMode 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.)
-
values
final Array<SelfieScan.FaceAuthMode> 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.
-
getEntries
final EnumEntries<SelfieScan.FaceAuthMode> getEntries()
Controls where face detection and liveness checks run during a SelfieScan face-login session.
Prefer the dedicated com.incode.welcome_sdk.modules.FaceAuthentication module for new integrations. See Face Authentication.
-
-
-
-