public enum SwiftCharset extends java.lang.Enum<SwiftCharset>
Modifier and Type | Method and Description |
---|---|
static SwiftCharset |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SwiftCharset[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="n") public static final SwiftCharset n
@SerializedName(value="a") public static final SwiftCharset a
@SerializedName(value="A") public static final SwiftCharset A
@SerializedName(value="x") public static final SwiftCharset x
@SerializedName(value="y") public static final SwiftCharset y
@SerializedName(value="z") public static final SwiftCharset z
@SerializedName(value="c") public static final SwiftCharset c
@SerializedName(value="B") public static final SwiftCharset B
public static SwiftCharset[] values()
for (SwiftCharset c : SwiftCharset.values()) System.out.println(c);
public static SwiftCharset 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 null