Package com.bandwidth.iris.sdk.model
Enum LoaFileType
- java.lang.Object
-
- java.lang.Enum<LoaFileType>
-
- com.bandwidth.iris.sdk.model.LoaFileType
-
- All Implemented Interfaces:
Serializable,Comparable<LoaFileType>
public enum LoaFileType extends Enum<LoaFileType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static LoaFileTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LoaFileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PDF
public static final LoaFileType PDF
-
PLAIN
public static final LoaFileType PLAIN
-
JPG
public static final LoaFileType JPG
-
TIFF
public static final LoaFileType TIFF
-
CSV
public static final LoaFileType CSV
-
XML
public static final LoaFileType XML
-
WAV
public static final LoaFileType WAV
-
ZIP
public static final LoaFileType ZIP
-
-
Method Detail
-
values
public static LoaFileType[] 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 (LoaFileType c : LoaFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoaFileType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<LoaFileType>
-
-