Class PersistenceConstants
java.lang.Object
com.bluebell.greenhouse.platform.constants.PersistenceConstants
Shared JDBC column definitions and persistence validation limits.
- Version:
- 3.0.1
- Author:
- Stephen Prizio
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringJDBC definition for 64-bit integer values.static final intDefault length used by bounded string columns, including enum names.static final StringJDBC definition for 64-bit floating-point values.static final StringJDBC definition for 32-bit integer values.static final intMaximum length for user-facing names and identifiers.static final StringJDBC definition for intentionally unbounded text.static final intLength of a canonical UUID string. -
Method Summary
-
Field Details
-
DEFAULT_VARCHAR_LENGTH
public static final int DEFAULT_VARCHAR_LENGTHDefault length used by bounded string columns, including enum names.- See Also:
-
STANDARD_NAME_LENGTH
public static final int STANDARD_NAME_LENGTHMaximum length for user-facing names and identifiers.- See Also:
-
UUID_LENGTH
public static final int UUID_LENGTHLength of a canonical UUID string.- See Also:
-
TEXT_COLUMN_DEFINITION
JDBC definition for intentionally unbounded text.- See Also:
-
DOUBLE_PRECISION_COLUMN_DEFINITION
JDBC definition for 64-bit floating-point values.- See Also:
-
BIGINT_COLUMN_DEFINITION
JDBC definition for 64-bit integer values.- See Also:
-
INTEGER_COLUMN_DEFINITION
JDBC definition for 32-bit integer values.- See Also:
-