Enum FileUtility.LogOutputFileType
- java.lang.Object
-
- java.lang.Enum<FileUtility.LogOutputFileType>
-
- org.openstreetmap.atlas.checks.utility.FileUtility.LogOutputFileType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FileUtility.LogOutputFileType>
- Enclosing class:
- FileUtility
public static enum FileUtility.LogOutputFileType extends java.lang.Enum<FileUtility.LogOutputFileType>
An enum containing the different types of input files that we can handle.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPRESSED_LOGLOG
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileUtility.LogOutputFileTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FileUtility.LogOutputFileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOG
public static final FileUtility.LogOutputFileType LOG
-
COMPRESSED_LOG
public static final FileUtility.LogOutputFileType COMPRESSED_LOG
-
-
Method Detail
-
values
public static FileUtility.LogOutputFileType[] 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 (FileUtility.LogOutputFileType c : FileUtility.LogOutputFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileUtility.LogOutputFileType 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
-
-