Enum Class RecordOption

java.lang.Object
java.lang.Enum<RecordOption>
org.rostore.entity.media.RecordOption
All Implemented Interfaces:
Serializable, Comparable<RecordOption>, Constable

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

    • ONLY_INSERT

      public static final RecordOption ONLY_INSERT
    • ONLY_REPLACE

      public static final RecordOption ONLY_REPLACE
    • OVERRIDE_VERSION

      public static final RecordOption OVERRIDE_VERSION
  • Method Details

    • values

      public static RecordOption[] 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 RecordOption 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
    • parse

      public static EnumSet<RecordOption> parse(String commaSeparated)