Package io.apicurio.registry.events.dto
Enum RegistryEventType
- java.lang.Object
-
- java.lang.Enum<RegistryEventType>
-
- io.apicurio.registry.events.dto.RegistryEventType
-
- All Implemented Interfaces:
Serializable
,Comparable<RegistryEventType>
public enum RegistryEventType extends Enum<RegistryEventType>
- Author:
- Fabian Martinez
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
cloudEventType()
static RegistryEventType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RegistryEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GROUP_CREATED
public static final RegistryEventType GROUP_CREATED
-
GROUP_UPDATED
public static final RegistryEventType GROUP_UPDATED
-
GROUP_DELETED
public static final RegistryEventType GROUP_DELETED
-
ARTIFACTS_IN_GROUP_DELETED
public static final RegistryEventType ARTIFACTS_IN_GROUP_DELETED
-
ARTIFACT_CREATED
public static final RegistryEventType ARTIFACT_CREATED
-
ARTIFACT_UPDATED
public static final RegistryEventType ARTIFACT_UPDATED
-
ARTIFACT_DELETED
public static final RegistryEventType ARTIFACT_DELETED
-
ARTIFACT_STATE_CHANGED
public static final RegistryEventType ARTIFACT_STATE_CHANGED
-
ARTIFACT_RULE_CREATED
public static final RegistryEventType ARTIFACT_RULE_CREATED
-
ARTIFACT_RULE_UPDATED
public static final RegistryEventType ARTIFACT_RULE_UPDATED
-
ARTIFACT_RULE_DELETED
public static final RegistryEventType ARTIFACT_RULE_DELETED
-
ALL_ARTIFACT_RULES_DELETED
public static final RegistryEventType ALL_ARTIFACT_RULES_DELETED
-
GLOBAL_RULE_CREATED
public static final RegistryEventType GLOBAL_RULE_CREATED
-
GLOBAL_RULE_UPDATED
public static final RegistryEventType GLOBAL_RULE_UPDATED
-
GLOBAL_RULE_DELETED
public static final RegistryEventType GLOBAL_RULE_DELETED
-
ALL_GLOBAL_RULES_DELETED
public static final RegistryEventType ALL_GLOBAL_RULES_DELETED
-
-
Method Detail
-
values
public static RegistryEventType[] 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 (RegistryEventType c : RegistryEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegistryEventType 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
-
cloudEventType
public String cloudEventType()
-
-