| Modifier and Type | Method and Description |
|---|---|
byte[] |
getBom() |
java.nio.charset.Charset |
getCharset() |
java.lang.String |
getName() |
int |
getSize() |
boolean |
isDefaultCharset() |
java.lang.String |
toString() |
static BOM |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BOM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BOM NONE
public static final BOM UTF8
public static final BOM UTF16BE
public static final BOM UTF16LE
public static BOM[] values()
for (BOM c : BOM.values()) System.out.println(c);
public static BOM 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 java.lang.String getName()
public boolean isDefaultCharset()
public java.nio.charset.Charset getCharset()
public int getSize()
public byte[] getBom()
public java.lang.String toString()
toString in class java.lang.Enum<BOM>