public static enum Constants.EncryptionErrorType extends java.lang.Enum<Constants.EncryptionErrorType>
| Enum Constant and Description |
|---|
ENCRYPTION_ERROR_DATASTREAM_DECRYPTION_FAILURE
3: DataStream decryption errors.
|
ENCRYPTION_ERROR_DATASTREAM_ENCRYPTION_FAILURE
4: DataStream encryption errors.
|
ENCRYPTION_ERROR_DECRYPTION_FAILURE
1: MediaStream decryption errors.
|
ENCRYPTION_ERROR_ENCRYPTION_FAILURE
2: MediaStream encryption errors.
|
ENCRYPTION_ERROR_INTERNAL_FAILURE
0: Internal reason.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.EncryptionErrorType |
fromInt(int value) |
int |
getValue() |
static Constants.EncryptionErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.EncryptionErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.EncryptionErrorType ENCRYPTION_ERROR_INTERNAL_FAILURE
public static final Constants.EncryptionErrorType ENCRYPTION_ERROR_DECRYPTION_FAILURE
public static final Constants.EncryptionErrorType ENCRYPTION_ERROR_ENCRYPTION_FAILURE
public static final Constants.EncryptionErrorType ENCRYPTION_ERROR_DATASTREAM_DECRYPTION_FAILURE
public static final Constants.EncryptionErrorType ENCRYPTION_ERROR_DATASTREAM_ENCRYPTION_FAILURE
public static Constants.EncryptionErrorType[] values()
for (Constants.EncryptionErrorType c : Constants.EncryptionErrorType.values()) System.out.println(c);
public static Constants.EncryptionErrorType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static Constants.EncryptionErrorType fromInt(int value)