public enum FileContentType extends java.lang.Enum<FileContentType>
| Enum Constant and Description |
|---|
ASCII
ASCII format type, such as ASCII FBX, ASCII STL
|
BINARY
Binary format type, such as binary FBX, binary STL
|
| Modifier and Type | Method and Description |
|---|---|
static FileContentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileContentType BINARY
public static final FileContentType ASCII
public static FileContentType[] values()
for (FileContentType c : FileContentType.values()) System.out.println(c);
public static FileContentType 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