Enum Class FileMode.Type

java.lang.Object
java.lang.Enum<FileMode.Type>
net.schmizz.sshj.sftp.FileMode.Type
All Implemented Interfaces:
Serializable, Comparable<FileMode.Type>, Constable
Enclosing class:
FileMode

public static enum FileMode.Type extends Enum<FileMode.Type>
  • Enum Constant Details

    • BLOCK_SPECIAL

      public static final FileMode.Type BLOCK_SPECIAL
      block special
    • CHAR_SPECIAL

      public static final FileMode.Type CHAR_SPECIAL
      character special
    • FIFO_SPECIAL

      public static final FileMode.Type FIFO_SPECIAL
      FIFO special
    • SOCKET_SPECIAL

      public static final FileMode.Type SOCKET_SPECIAL
      socket special
    • REGULAR

      public static final FileMode.Type REGULAR
      regular
    • DIRECTORY

      public static final FileMode.Type DIRECTORY
      directory
    • UNKNOWN

      public static final FileMode.Type UNKNOWN
      unknown
  • Field Details

    • val

      private final int val
  • Constructor Details

    • Type

      private Type(int val)
  • Method Details

    • values

      public static FileMode.Type[] 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 FileMode.Type 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
    • fromMask

      public static FileMode.Type fromMask(int mask)
    • toMask

      public int toMask()