Enum Class Authority

java.lang.Object
java.lang.Enum<Authority>
nl.vpro.domain.media.Authority
All Implemented Interfaces:
Serializable, Comparable<Authority>, Constable

public enum Authority extends Enum<Authority>
A bit like OwnerType but simpler. It indicates whether a Prediction was created by in import, or created in POMS itself.

It is also available in the corresponding locations

Since:
5.1
Author:
Michiel Meeuwissen
  • Enum Constant Details

    • USER

      public static final Authority USER
      Means that the Prediction was created e.g. via the GUI or via an API call.
    • SYSTEM

      public static final Authority SYSTEM
      Means that the Prediction was created implicitly by an import from another system
  • Method Details

    • values

      public static Authority[] 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 Authority 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