public enum ZRTPSASEncoding extends java.lang.Enum<ZRTPSASEncoding>
Enum Constant and Description |
---|
sasb256
B256 (Base-256 (PGP Wordlist) Short Authentication String encoding)
|
sasb32
B32 (Base-32 Short Authentication String encoding)
|
Modifier and Type | Method and Description |
---|---|
static ZRTPSASEncoding |
fromInt(int i) |
static ZRTPSASEncoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZRTPSASEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZRTPSASEncoding sasb32
public static final ZRTPSASEncoding sasb256
public static ZRTPSASEncoding[] values()
for (ZRTPSASEncoding c : ZRTPSASEncoding.values()) System.out.println(c);
public static ZRTPSASEncoding 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 static ZRTPSASEncoding fromInt(int i)