public enum DracoCompressionLevel extends java.lang.Enum<DracoCompressionLevel>
| Enum Constant and Description |
|---|
FAST
Encoder will perform a compression as quickly as possible.
|
NO_COMPRESSION
No compression, this will result in the minimum encoding time.
|
OPTIMAL
Encoder will compress the scene optimally, which may takes longer time to finish.
|
STANDARD
Standard mode, with good compression and speed.
|
| Modifier and Type | Method and Description |
|---|---|
static DracoCompressionLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DracoCompressionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DracoCompressionLevel NO_COMPRESSION
public static final DracoCompressionLevel FAST
public static final DracoCompressionLevel STANDARD
public static final DracoCompressionLevel OPTIMAL
public static DracoCompressionLevel[] values()
for (DracoCompressionLevel c : DracoCompressionLevel.values()) System.out.println(c);
public static DracoCompressionLevel 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