Package com.here.platform.dal.custom
Enum Class MetadataName
- All Implemented Interfaces:
Serializable
,Comparable<MetadataName>
,Constable
Metadata information the user can use for any purpose. Some of these metadata information may be useful for selecting indexing attribute.
Example:-
PROCESSING_TIME
, INGESTION_TIME
- Since:
- 0.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTime when the message was ingested in the HERE platform.Message ID of the input data.System processing time when the message is parsed by Data Archiving Library (DAL).Output catalog where the data is archived based on indexing attributes.Actual index layer which holds the archived data and its information.Input catalog which provides stream data that is supposed to be archived.Actual stream layer whose data is supposed to be archived. -
Method Summary
Modifier and TypeMethodDescriptionstatic MetadataName
Returns the enum constant of this class with the specified name.static MetadataName[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
PROCESSING_TIME
System processing time when the message is parsed by Data Archiving Library (DAL). -
INGESTION_TIME
Time when the message was ingested in the HERE platform. -
SOURCE_CATALOG
Input catalog which provides stream data that is supposed to be archived. -
SOURCE_LAYER
Actual stream layer whose data is supposed to be archived. -
SINK_CATALOG
Output catalog where the data is archived based on indexing attributes. -
SINK_LAYER
Actual index layer which holds the archived data and its information. -
MESSAGE_ID
Message ID of the input data.
-
-
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
-