Uses of Class
net.pricefx.common.api.FieldFormatType
-
Packages that use FieldFormatType Package Description net.pricefx.common.api Provides several classes commonly used in Pricefx API.net.pricefx.common.api.pa net.pricefx.server.dto.calculation Defines set of data transfer object (DTO) classes related to Calculations. -
-
Uses of FieldFormatType in net.pricefx.common.api
Methods in net.pricefx.common.api that return FieldFormatType Modifier and Type Method Description static FieldFormatType
FieldFormatType. get(String code)
static FieldFormatType
FieldFormatType. valueOf(String name)
Returns the enum constant of this type with the specified name.static FieldFormatType[]
FieldFormatType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of FieldFormatType in net.pricefx.common.api.pa
Methods in net.pricefx.common.api.pa with parameters of type FieldFormatType Modifier and Type Method Description static FieldType
FieldType. toType(FieldFormatType fieldFormatType)
-
Uses of FieldFormatType in net.pricefx.server.dto.calculation
Methods in net.pricefx.server.dto.calculation that return FieldFormatType Modifier and Type Method Description protected FieldFormatType
ResultMatrix. decideFormat(Object input)
FieldFormatType
ResultMatrix. getDefaultFormat()
Gets the default formatMethods in net.pricefx.server.dto.calculation that return types with arguments of type FieldFormatType Modifier and Type Method Description Map<String,FieldFormatType>
ResultMatrix. getColumnFormats()
Gets individual column formats (if specified)Methods in net.pricefx.server.dto.calculation with parameters of type FieldFormatType Modifier and Type Method Description void
ResultMatrix. setColumnFormat(String column, FieldFormatType fft)
Sets a column format for a specified columnvoid
ResultMatrix. setDefaultFormat(FieldFormatType fft)
Sets a default column formatResultMatrix
ResultMatrix. withColumnFormat(String column, FieldFormatType fft)
Sets a column format for a specified columnResultMatrix
ResultMatrix. withDefaultFormat(FieldFormatType fft)
Sets a default column formatMethod parameters in net.pricefx.server.dto.calculation with type arguments of type FieldFormatType Modifier and Type Method Description ResultMatrix
ResultMatrix. withColumnFormats(Map<String,FieldFormatType> columnFormats)
Sets a column formats for multiple columns.
-