Enum Class DMS.AddOption

java.lang.Object
java.lang.Enum<DMS.AddOption>
com.groiss.dms.DMS.AddOption
All Implemented Interfaces:
Serializable, Comparable<DMS.AddOption>, Constable
Enclosing interface:
DMS

public static enum DMS.AddOption extends Enum<DMS.AddOption>
Options for adding a document to a folder. The options are used if adding the document causes a name conflict.
  • Enum Constant Details

    • REPLACE_EXISTING

      public static final DMS.AddOption REPLACE_EXISTING
      Replace the existing document.
    • CREATE_WITH_NEW_NAME

      public static final DMS.AddOption CREATE_WITH_NEW_NAME
      Insert the document with a new name.
    • ERROR_IF_EXISTING

      public static final DMS.AddOption ERROR_IF_EXISTING
      Throw an exception if there is a name conflict.
  • Method Details

    • values

      public static DMS.AddOption[] 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 DMS.AddOption 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