Package com.helger.photon.exchange
Enum EExchangeFileTypeText
- java.lang.Object
-
- java.lang.Enum<EExchangeFileTypeText>
-
- com.helger.photon.exchange.EExchangeFileTypeText
-
- All Implemented Interfaces:
com.helger.commons.text.display.IHasDisplayText,com.helger.commons.text.display.IHasDisplayTextWithArgs,Serializable,Comparable<EExchangeFileTypeText>
@Translatable public enum EExchangeFileTypeText extends Enum<EExchangeFileTypeText> implements com.helger.commons.text.display.IHasDisplayTextWithArgs
File type texts- Author:
- Philip Helger
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplayText(Locale aContentLocale)static EExchangeFileTypeTextvalueOf(String name)Returns the enum constant of this type with the specified name.static EExchangeFileTypeText[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXPORT_AS
public static final EExchangeFileTypeText EXPORT_AS
-
SAVE_AS
public static final EExchangeFileTypeText SAVE_AS
-
-
Method Detail
-
values
public static EExchangeFileTypeText[] 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 (EExchangeFileTypeText c : EExchangeFileTypeText.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EExchangeFileTypeText 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
-
-