Enum Class FileContentType

java.lang.Object
java.lang.Enum<FileContentType>
com.install4j.api.beaninfo.FileContentType
All Implemented Interfaces:
Serializable, Comparable<FileContentType>, Constable

public enum FileContentType extends Enum<FileContentType>
Enumeration class for all possible file content types for file property descriptors.
See Also:
  • Enum Constant Details

    • OTHER

      public static final FileContentType OTHER
      The file has a content type that cannot be edited in the editors that associated with the other file content types in this enumeration class. This is the default state for FilePropertyDescriptors.
    • TEXT

      public static final FileContentType TEXT
      The file contains text encoded in UTF-8 format. The install4j IDE will provide a text editor that allows the user to edit the file. Also, the user can create text files from within the IDE.
    • HTML

      public static final FileContentType HTML
      The file contains HTML encoded in UTF-8 format. The install4j IDE will provide an HTML editor that allows the user to edit the file. Also, the user can create HTML files from within the IDE.
  • Method Details

    • values

      public static FileContentType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FileContentType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<FileContentType>