public enum IServiceContentEncoding extends java.lang.Enum<IServiceContentEncoding>
| Enum Constant and Description |
|---|
Ascii |
IsoLatin1 |
Unicode |
Unknown |
Utf8 |
| Modifier and Type | Method and Description |
|---|---|
static IServiceContentEncoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IServiceContentEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IServiceContentEncoding Ascii
public static final IServiceContentEncoding Utf8
public static final IServiceContentEncoding IsoLatin1
public static final IServiceContentEncoding Unicode
public static final IServiceContentEncoding Unknown
public static IServiceContentEncoding[] values()
for (IServiceContentEncoding c : IServiceContentEncoding.values()) System.out.println(c);
public static IServiceContentEncoding 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