NamedGraphLogLevel enum
Controls the logging level when named graphs are handled
This enum allows fine-grained control over how verbose the decoder should be when processing named graphs according to the NamedGraphHandling mode.
Values
- silent → const NamedGraphLogLevel
-
No logging output
Use this when you're intentionally handling named graphs in a specific way and don't want any log noise in production.
- fine → const NamedGraphLogLevel
-
Log at fine/debug level
Suitable for development and debugging. These messages typically won't appear in production logs unless debug logging is explicitly enabled.
- info → const NamedGraphLogLevel
-
Log at info level
Use this when you want to be notified about named graph handling in normal operation, but it's not a concern.
- warning → const NamedGraphLogLevel
-
Log at warning level
Use this when named graph handling represents a potential issue or semantic change that should be visible in production logs.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
NamedGraphLogLevel> - A constant List of the values in this enum, in order of their declaration.