Enum Class FileType

java.lang.Object
java.lang.Enum<FileType>
org.alfresco.utility.model.FileType
All Implemented Interfaces:
Serializable, Comparable<FileType>, Constable

public enum FileType extends Enum<FileType>
  • Enum Constant Details

    • UNDEFINED

      public static final FileType UNDEFINED
    • EXE

      public static final FileType EXE
    • TEXT_PLAIN

      public static final FileType TEXT_PLAIN
    • XML

      public static final FileType XML
    • HTML

      public static final FileType HTML
    • PDF

      public static final FileType PDF
    • MSWORD

      public static final FileType MSWORD
    • MSWORD2007

      public static final FileType MSWORD2007
    • MSEXCEL

      public static final FileType MSEXCEL
    • MSEXCEL2007

      public static final FileType MSEXCEL2007
    • MSPOWERPOINT

      public static final FileType MSPOWERPOINT
    • MSPOWERPOINT2007

      public static final FileType MSPOWERPOINT2007
  • Field Details

    • mimeType

      public final String mimeType
    • extension

      public final String extension
  • Method Details

    • values

      public static FileType[] 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 FileType 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
    • fromName

      public static FileType fromName(String fileName)
    • getDocumentType

      public org.alfresco.dataprep.CMISUtil.DocumentType getDocumentType()
      Try to find a DataPrep CMISUtil.DocumentType that is equivalent to this FileType value.
      Returns:
      The DocumentType, or null if no equivalent type could be found.