- All Implemented Interfaces:
Serializable
,Comparable<NotificationClassification>
,Constable
,NotificationCategory
- Since:
- 5.22.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA deprecation category.A generic category.A hint category.A performance category.A schema category.A security category.A topology category.An unrecognized category.An unsupported category. -
Field Summary
Fields inherited from interface org.neo4j.driver.NotificationCategory
DEPRECATION, GENERIC, HINT, PERFORMANCE, SCHEMA, SECURITY, TOPOLOGY, UNRECOGNIZED, UNSUPPORTED
-
Method Summary
Modifier and TypeMethodDescriptionstatic NotificationClassification
Returns the enum constant of this class with the specified name.static NotificationClassification[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HINT
A hint category.For instance, the given hint cannot be satisfied.
-
UNRECOGNIZED
An unrecognized category.For instance, the query or command mentions entities that are unknown to the system.
-
UNSUPPORTED
An unsupported category.For instance, the query/command is trying to use features that are not supported by the current system or using features that are experimental and should not be used in production.
-
PERFORMANCE
A performance category.For instance, the query uses costly operations and might be slow.
-
DEPRECATION
A deprecation category.For instance, the query/command use deprecated features that should be replaced.
-
SECURITY
A security category.For instance, the security warnings.
Please note that this category was added to a later server version. Therefore, a compatible server version is required to use it.
-
TOPOLOGY
A topology category.For instance, the topology notifications.
Please note that this category was added to a later server version. Therefore, a compatible server version is required to use it.
-
GENERIC
A generic category.For instance, notifications that are not part of a more specific class.
-
SCHEMA
A schema category.For instance, notifications about indexes and constraints.
Please note that this category was added to a later server version. Therefore, a compatible server version is required to use it.
- Since:
- 5.24.0
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-