Class FileLockMetadata

java.lang.Object
com.dropbox.core.v2.files.FileLockMetadata

public class FileLockMetadata extends Object
  • Field Details

    • isLockholder

      @Nullable protected final Boolean isLockholder
    • lockholderName

      @Nullable protected final String lockholderName
    • lockholderAccountId

      @Nullable protected final String lockholderAccountId
    • created

      @Nullable protected final Date created
  • Constructor Details

    • FileLockMetadata

      public FileLockMetadata(@Nullable Boolean isLockholder, @Nullable String lockholderName, @Nullable String lockholderAccountId, @Nullable Date created)
      Use newBuilder() to create instances of this class without specifying values for all optional fields.
      Parameters:
      isLockholder - True if caller holds the file lock.
      lockholderName - The display name of the lock holder.
      lockholderAccountId - The account ID of the lock holder if known. Must have length of at least 40 and have length of at most 40.
      created - The timestamp of the lock was created.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • FileLockMetadata

      public FileLockMetadata()
      None

      The default values for unset fields will be used.

  • Method Details

    • getIsLockholder

      @Nullable public Boolean getIsLockholder()
      True if caller holds the file lock.
      Returns:
      value for this field, or null if not present.
    • getLockholderName

      @Nullable public String getLockholderName()
      The display name of the lock holder.
      Returns:
      value for this field, or null if not present.
    • getLockholderAccountId

      @Nullable public String getLockholderAccountId()
      The account ID of the lock holder if known.
      Returns:
      value for this field, or null if not present.
    • getCreated

      @Nullable public Date getCreated()
      The timestamp of the lock was created.
      Returns:
      value for this field, or null if not present.
    • newBuilder

      public static FileLockMetadata.Builder newBuilder()
      Returns a new builder for creating an instance of this class.
      Returns:
      builder for this class.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toStringMultiline

      public String toStringMultiline()
      Returns a String representation of this object formatted for easier readability.

      The returned String may contain newlines.

      Returns:
      Formatted, multiline String representation of this object