Enum LibraryDownloadError
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
@Deprecated(message = "Since 5.25.0, face-recognition libraries are bundled with the SDK and cannot fail to download, so this error type is never raised. Remove any references and the branches that handle it; no replacement is needed. Will be removed in a future release.") public enum LibraryDownloadError extends Enum<LibraryDownloadError>
- Since:
Deprecated in 5.25.0
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<LibraryDownloadError>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description INSUFFICIENT_SPACENETWORK_ERRORERROR_LOADING_LIBRARIES
-
Method Summary
Modifier and Type Method Description final LibraryDownloadErrorvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<LibraryDownloadError>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<LibraryDownloadError>getEntries()-
-
Method Detail
-
valueOf
final LibraryDownloadError 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<LibraryDownloadError> 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<LibraryDownloadError> getEntries()
- Since:
Deprecated in 5.25.0
-
-
-
-