Uses of Enum Class
guru.mikelue.foxglove.ColumnMeta.Property
Packages that use ColumnMeta.Property
Package
Description
Foxglove is a lightweight Java library for easing the generating data for testing database-related code.
This package provides classes to handle settings for data generating.
-
Uses of ColumnMeta.Property in guru.mikelue.foxglove
Methods in guru.mikelue.foxglove that return ColumnMeta.PropertyModifier and TypeMethodDescriptionstatic ColumnMeta.PropertyReturns the enum constant of this class with the specified name.static ColumnMeta.Property[]ColumnMeta.Property.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in guru.mikelue.foxglove that return types with arguments of type ColumnMeta.PropertyModifier and TypeMethodDescriptionColumnMeta.properties()Returns the value of thepropertiesrecord component.Constructor parameters in guru.mikelue.foxglove with type arguments of type ColumnMeta.PropertyModifierConstructorDescriptionColumnMeta(String name, EnumSet<ColumnMeta.Property> properties, String typeName, JDBCType jdbcType, int size, int decimalDigits) Creates an instance of aColumnMetarecord class. -
Uses of ColumnMeta.Property in guru.mikelue.foxglove.setting
Methods in guru.mikelue.foxglove.setting with parameters of type ColumnMeta.PropertyModifier and TypeMethodDescriptionDataSetting.autoGenerateFor(ColumnMeta.Property... properties) Sets whether or not to generate value automatically by the given properties of a column.DataSetting.notAutoGenerateFor(ColumnMeta.Property... properties) Sets to not to generate value automatically by the given properties of a column.