Enum WatchStatus
- java.lang.Object
-
- java.lang.Enum<WatchStatus>
-
- org.odpi.openmetadata.accessservices.communityprofile.properties.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 Summary
Enum Constants Enum Constant Description NOT_WATCHEDUSE_DEFAULTWATCHED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Return the default description of the enumeration.StringgetName()Return the default name of the enumeration.intgetOrdinal()Return the numeric representation of the enumeration.StringtoString()toString() JSON-stylestatic WatchStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static WatchStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_WATCHED
public static final WatchStatus NOT_WATCHED
-
WATCHED
public static final WatchStatus 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 nameNullPointerException- 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
-
toString
public String toString()
toString() JSON-style- Overrides:
toStringin classEnum<WatchStatus>- Returns:
- string description
-
-