Package org.apache.sis.feature
Enum Class FoliationRepresentation
- All Implemented Interfaces:
- Serializable,- Comparable<FoliationRepresentation>,- Constable
Specifies whether trajectories are represented in a single moving feature instance
 or fragmented in distinct static feature instances.
 
Example:
 consider the following trajectories:
 
   
 In this example, John Smith's trajectory can be represented in two ways:
 we can construct a single moving feature instance representing the full trajectory (3 4), (3 5), (3 9)
 with some time representation (for example by adding a temporal dimension in each coordinate) and dynamic "Status"
 property. Or alternatively, we can keep John Smith's trajectory fragmented in two 
 This enumeration can be used with | Identifier | Time | Trajectory | Status | 
|---|---|---|---|
| John Smith | 8:00 | (3 4), (3 5) | Walking | 
| Joe Blo | 8:00 | (5 5), (6 6) | Walking | 
| John Smith | 8:05 | (3 5), (3 9) | Running | 
Feature instance where
 each instance can be handled as a static feature.
 DataStore as a hint about desired representation
 of moving features.- Since:
- 1.0
Defined in the sis-feature module
- 
Nested Class SummaryNested classes/interfaces inherited from class EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionTrajectories stored in a singleFeatureinstance.Trajectories stored in distinctFeatureinstances, each of them handled as if it was a static feature.
- 
Method SummaryModifier and TypeMethodDescriptionstatic FoliationRepresentationReturns the enum constant of this class with the specified name.static FoliationRepresentation[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- 
Enum Constant Details- 
ASSEMBLEDTrajectories stored in a singleFeatureinstance. Every point on the trajectory may be at a different time. Properties may be dynamic, i.e. have time-dependent value.
- 
FRAGMENTEDTrajectories stored in distinctFeatureinstances, each of them handled as if it was a static feature.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-