Enum AtlasGeneratorJobGroup
- java.lang.Object
-
- java.lang.Enum<AtlasGeneratorJobGroup>
-
- org.openstreetmap.atlas.generator.AtlasGeneratorJobGroup
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AtlasGeneratorJobGroup>
public enum AtlasGeneratorJobGroup extends java.lang.Enum<AtlasGeneratorJobGroup>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIGURED_FILTERED_OUTPUTCOUNTRY_STATISTICSDIFFSEDGE_SUBRAWSHARD_STATISTICSSLICEDSLICED_SUBTAGGABLE_FILTERED_OUTPUTWAY_SECTIONED_PBF
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCacheFolder()java.lang.StringgetDescription()java.lang.IntegergetId()java.lang.Class<?>getKeyClass()java.lang.Class<? extends org.apache.hadoop.mapred.lib.MultipleOutputFormat<?,?>>getOutputClass()static AtlasGeneratorJobGroupvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AtlasGeneratorJobGroup[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RAW
public static final AtlasGeneratorJobGroup RAW
-
SLICED
public static final AtlasGeneratorJobGroup SLICED
-
SLICED_SUB
public static final AtlasGeneratorJobGroup SLICED_SUB
-
EDGE_SUB
public static final AtlasGeneratorJobGroup EDGE_SUB
-
WAY_SECTIONED_PBF
public static final AtlasGeneratorJobGroup WAY_SECTIONED_PBF
-
SHARD_STATISTICS
public static final AtlasGeneratorJobGroup SHARD_STATISTICS
-
COUNTRY_STATISTICS
public static final AtlasGeneratorJobGroup COUNTRY_STATISTICS
-
DIFFS
public static final AtlasGeneratorJobGroup DIFFS
-
TAGGABLE_FILTERED_OUTPUT
public static final AtlasGeneratorJobGroup TAGGABLE_FILTERED_OUTPUT
-
CONFIGURED_FILTERED_OUTPUT
public static final AtlasGeneratorJobGroup CONFIGURED_FILTERED_OUTPUT
-
-
Method Detail
-
values
public static AtlasGeneratorJobGroup[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AtlasGeneratorJobGroup c : AtlasGeneratorJobGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AtlasGeneratorJobGroup valueOf(java.lang.String name)
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
-
getCacheFolder
public java.lang.String getCacheFolder()
-
getDescription
public java.lang.String getDescription()
-
getId
public java.lang.Integer getId()
-
getKeyClass
public java.lang.Class<?> getKeyClass()
-
getOutputClass
public java.lang.Class<? extends org.apache.hadoop.mapred.lib.MultipleOutputFormat<?,?>> getOutputClass()
-
-