public enum PointEncoders extends Enum<PointEncoders>
Enum Constant and Description |
---|
COMPRESSED
Denotes the compressed point encoding / decoding method.
|
UNCOMPRESSED
Denotes the uncompressed point encoding / decoding method.
|
Modifier and Type | Method and Description |
---|---|
static PointEncoders |
getDefaultPointEncoder()
Gets the default point encoding algorithm identifier.
|
byte |
getEncoding()
Returns the encoding of this point encoder.
|
static byte |
getSupportedEncodings()
Returns all supported compression algorithms.
|
static void |
setDefaultPointEncoder(PointEncoders defaultPointEncoder)
Sets the default point encoding algorithm identifier.
|
static PointEncoders |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PointEncoders[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointEncoders UNCOMPRESSED
public static final PointEncoders COMPRESSED
public static PointEncoders[] values()
for (PointEncoders c : PointEncoders.values()) System.out.println(c);
public static PointEncoders valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic byte getEncoding()
public static PointEncoders getDefaultPointEncoder()
setDefaultPointEncoder(PointEncoders)
public static void setDefaultPointEncoder(PointEncoders defaultPointEncoder)
defaultPointEncoder
- the default encoding algorithm identifiergetDefaultPointEncoder()
public static byte getSupportedEncodings()
Copyright © 2011–2022 Stiftung SIC. All rights reserved.