Package com.luciad.network.graph.numeric
Enum Class TLcdNumericGraphEncoder.EdgeValueEncoding
java.lang.Object
java.lang.Enum<TLcdNumericGraphEncoder.EdgeValueEncoding>
com.luciad.network.graph.numeric.TLcdNumericGraphEncoder.EdgeValueEncoding
- All Implemented Interfaces:
Serializable
,Comparable<TLcdNumericGraphEncoder.EdgeValueEncoding>
,Constable
- Enclosing class:
TLcdNumericGraphEncoder
public static enum TLcdNumericGraphEncoder.EdgeValueEncoding
extends Enum<TLcdNumericGraphEncoder.EdgeValueEncoding>
Enumeration describing the encoding of edge values.
- Since:
- 9.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMPACT
Compact encoding, using a 2-byte integer encoding. All edge values will be rounded to a value between (including) 0 and 65535. -
STANDARD
Standard encoding, using a 4-byte floating point encoding. All edge values will be rounded to the nearest float value.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-