Class DtProperty
- java.lang.Object
-
- io.vertigo.datamodel.structure.definitions.DtProperty
-
public final class DtProperty extends Object
Métadonnée liée à un champ.- Author:
- pchretien
-
-
Field Summary
Fields Modifier and Type Field Description static Property<String>
INDEX_TYPE
Propriété standard : Type de l'index.static Property<Integer>
MAX_LENGTH
Propriété standard : longueur max du champ, valeur Integer.static Property<Double>
MAX_VALUE
Propriété de contrainte : valeur maximum, Double.static Property<Double>
MIN_VALUE
Propriété de contrainte : valeur minimum, Double.static Property<Boolean>
MULTIPLE
static Property<String>
REGEX
Proriété Regex de type String.static Property<String>
STORE_TYPE
Propriété standard : Type de données pour la persistence.static Property<String>
TYPE
Propriété standard : Type des définitions.static Property<String>
UNIT
Propriété standard : Unité de la valeur, valeur String.
-
-
-
Field Detail
-
MAX_LENGTH
public static final Property<Integer> MAX_LENGTH
Propriété standard : longueur max du champ, valeur Integer.
-
MIN_VALUE
public static final Property<Double> MIN_VALUE
Propriété de contrainte : valeur minimum, Double. Dans le cas d'une date, cette propriété contient le timestamp de la date min.
-
MAX_VALUE
public static final Property<Double> MAX_VALUE
Propriété de contrainte : valeur maximum, Double. Dans le cas d'une date, cette propriété contient le timestamp de la date max.
-
UNIT
public static final Property<String> UNIT
Propriété standard : Unité de la valeur, valeur String.
-
INDEX_TYPE
public static final Property<String> INDEX_TYPE
Propriété standard : Type de l'index. (SOLR par exemple)
-
STORE_TYPE
public static final Property<String> STORE_TYPE
Propriété standard : Type de données pour la persistence.
-
-