Package jakarta.nosql.column
Interface ColumnObserverParser
-
public interface ColumnObserverParser
An observer to a parser; this observer allows checking both the name of an entity and the fields. This observer might be used to the mapper process.
-
-
Field Summary
Fields Modifier and Type Field Description static ColumnObserverParser
EMPTY
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default String
fireEntity(String entity)
Fire an event to entity namedefault String
fireField(String entity, String field)
Fire an event to each field in case of mapper process
-
-
-
Field Detail
-
EMPTY
static final ColumnObserverParser EMPTY
-
-
Method Detail
-
fireEntity
default String fireEntity(String entity)
Fire an event to entity name- Parameters:
entity
- the entity- Returns:
- the field result
- Throws:
NullPointerException
- when the entity is null
-
fireField
default String fireField(String entity, String field)
Fire an event to each field in case of mapper process- Parameters:
field
- the fieldentity
- the entity- Returns:
- the field result
- Throws:
NullPointerException
- when there is null parameter
-
-