Package org.apache.iceberg
Enum ManifestReader.FileType
- java.lang.Object
- 
- java.lang.Enum<ManifestReader.FileType>
- 
- org.apache.iceberg.ManifestReader.FileType
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<ManifestReader.FileType>
 - Enclosing class:
- ManifestReader<F extends ContentFile<F>>
 
 protected static enum ManifestReader.FileType extends java.lang.Enum<ManifestReader.FileType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DATA_FILESDELETE_FILES
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ManifestReader.FileTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ManifestReader.FileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DATA_FILESpublic static final ManifestReader.FileType DATA_FILES 
 - 
DELETE_FILESpublic static final ManifestReader.FileType DELETE_FILES 
 
- 
 - 
Method Detail- 
valuespublic static ManifestReader.FileType[] 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 (ManifestReader.FileType c : ManifestReader.FileType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ManifestReader.FileType 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-