Package org.sqlproc.engine.plugin
Interface Modifiers
- All Known Subinterfaces:
IsEmptyPlugin
,IsTruePlugin
,SqlCountPlugin
,SqlExecutionPlugin
,SqlFromToPlugin
,SqlIdentityPlugin
,SqlProcessingIdPlugin
,SqlSequencePlugin
- All Known Implementing Classes:
DefaultSqlPlugins
public interface Modifiers
The modifiers are used as the supplement values in the processing of the META SQL statements.
- Author:
- Vladimir Hudec
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The modifier used to detect the empty value and true value.static final String
The modifier used to detect the empty value and true value for the collections.static final String
The modifier used to detect the method call invoked on the parent object.static final String
The modifier used to detect the discriminator column/attribute.static final String
The modifier used to detect the empty value and true value.static final String
The modifier used to detect the generic type of the embedded attribute in a result class.static final String
The modifier used to detect the primary key in the SQL command execution output.static final String
The modifier used to detect the identity generator.static final String
The modifier used to detect the identity selectusage.static final String
The modifier used to detect the empty value and true value.static final String
The modifier used to detect the empty value and true value.static final String
The modifier used to detect the empty value and true value.static final String
The modifier used to detect the sequence usage.static final String
The modifier used to detect the dynamic type of the embedded attribute in a result class.
-
Field Details
-
MODIFIER_NOTEMPTY
The modifier used to detect the empty value and true value. For the usage please see the Wiki Tutorials.- See Also:
-
MODIFIER_NOTNULL
The modifier used to detect the empty value and true value. For the usage please see the Wiki Tutorials.- See Also:
-
MODIFIER_ANY
The modifier used to detect the empty value and true value. For the usage please see the Wiki Tutorials.- See Also:
-
MODIFIER_NULL
The modifier used to detect the empty value and true value. For the usage please see the Wiki Tutorials.- See Also:
-
MODIFIER_EMPTY
The modifier used to detect the empty value and true value. For the usage please see the Wiki Tutorials.- See Also:
-
MODIFIER_CALL
The modifier used to detect the method call invoked on the parent object. For the usage please see the Wiki Tutorials.- See Also:
-
MODIFIER_SEQUENCE
The modifier used to detect the sequence usage.- See Also:
-
MODIFIER_IDENTITY_SELECT
The modifier used to detect the identity selectusage.- See Also:
-
MODIFIER_IDENTITY_GENERATOR
The modifier used to detect the identity generator. The related value is a sequence or identity select.- See Also:
-
MODIFIER_ANYSET
The modifier used to detect the empty value and true value for the collections. For the usage please see the Wiki Tutorials.- See Also:
-
MODIFIER_ID
The modifier used to detect the primary key in the SQL command execution output.- See Also:
-
MODIFIER_GTYPE
The modifier used to detect the generic type of the embedded attribute in a result class. It's used mainly in the case the embedded attribute is a collection of abstract type.- See Also:
-
MODIFIER_TYPE
The modifier used to detect the dynamic type of the embedded attribute in a result class. It's used mainly in the case the embedded attribute is of collection type.- See Also:
-
MODIFIER_DISCRIMINATOR
The modifier used to detect the discriminator column/attribute. It's used mainly in the inheritance handling.- See Also:
-