Record Class MacErrno

java.lang.Object
java.lang.Record
org.cryptomator.jfuse.mac.MacErrno
All Implemented Interfaces:
Errno

public record MacErrno() extends Record implements Errno
  • Constructor Details

    • MacErrno

      public MacErrno()
      Creates an instance of a MacErrno record class.
  • Method Details

    • enoent

      public int enoent()
      Specified by:
      enoent in interface Errno
    • enosys

      public int enosys()
      Specified by:
      enosys in interface Errno
    • enomem

      public int enomem()
      Specified by:
      enomem in interface Errno
    • eacces

      public int eacces()
      Specified by:
      eacces in interface Errno
    • eio

      public int eio()
      Specified by:
      eio in interface Errno
    • erofs

      public int erofs()
      Specified by:
      erofs in interface Errno
    • ebadf

      public int ebadf()
      Specified by:
      ebadf in interface Errno
    • eexist

      public int eexist()
      Specified by:
      eexist in interface Errno
    • enotdir

      public int enotdir()
      Specified by:
      enotdir in interface Errno
    • eisdir

      public int eisdir()
      Specified by:
      eisdir in interface Errno
    • enotempty

      public int enotempty()
      Specified by:
      enotempty in interface Errno
    • einval

      public int einval()
      Specified by:
      einval in interface Errno
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.