Package org.opentrafficsim.kpi.sampling
Enum Sampler.CompressionMethod
java.lang.Object
java.lang.Enum<Sampler.CompressionMethod>
org.opentrafficsim.kpi.sampling.Sampler.CompressionMethod
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Sampler.CompressionMethod>
,java.lang.constant.Constable
- Enclosing class:
- Sampler<G extends GtuDataInterface>
public static enum Sampler.CompressionMethod extends java.lang.Enum<Sampler.CompressionMethod>
Defines the compression method for stored data.
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Version:
- $Revision$, $LastChangedDate$, by $Author$, initial version 3 mei 2017
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
No compression.OMIT_DUPLICATE_INFO
Duplicate info per trajectory is only stored at the first sample, and empty for other samples.ZIP
Zip compression. -
Method Summary
Modifier and Type Method Description static Sampler.CompressionMethod
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Sampler.CompressionMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
No compression. -
OMIT_DUPLICATE_INFO
Duplicate info per trajectory is only stored at the first sample, and empty for other samples. -
ZIP
Zip compression.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-