Enum WatchStatus

  • All Implemented Interfaces:
    Serializable, Comparable<WatchStatus>

    public enum WatchStatus
    extends Enum<WatchStatus>
    implements Serializable
    WatchStatus specifies whether changes to assets in an asset collection should be passed as notifications to the actor who's profile is linked to the collection.
    • NOT_WATCHED - Notifications should not be sent to the actor.
    • WATCHED - Notifications should be sent to the actor.
    • USE_DEFAULT - Use the default setting for the collection to determine whether to send notifications.
    • Enum Constant Detail

      • NOT_WATCHED

        public static final WatchStatus NOT_WATCHED
      • USE_DEFAULT

        public static final WatchStatus USE_DEFAULT
    • Method Detail

      • values

        public static WatchStatus[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (WatchStatus c : WatchStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WatchStatus valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • getOrdinal

        public int getOrdinal()
        Return the numeric representation of the enumeration.
        Returns:
        int ordinal
      • getName

        public String getName()
        Return the default name of the enumeration.
        Returns:
        String name
      • getDescription

        public String getDescription()
        Return the default description of the enumeration.
        Returns:
        String description