Uses of Class
com.iizix.Value
Uses of Value in com.iizigo.panel.prop
Methods in com.iizigo.panel.prop with parameters of type Value Modifier and Type Method Description void
EUIDateTime. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.Uses of Value in com.iizigo.prop.editor
Methods in com.iizigo.prop.editor that return Value Modifier and Type Method Description Value
ValuePropEditor. getDefaultValue()
Gets the default defined value to set in the property when defined.protected Value
ValuePropEditor. getValue(java.lang.String input)
Gets the property value for a user input.Methods in com.iizigo.prop.editor with parameters of type Value Modifier and Type Method Description java.lang.String
ValuePropEditor. formatValue(Value value)
Formats the value for user input as a String.Uses of Value in com.iizigo.vs
Methods in com.iizigo.vs with parameters of type Value Modifier and Type Method Description void
TablePanel. onCellValueChanged(VSColumnHeader column, VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
void
TablePanel. onCellValueChanged(VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
void
ValuePanel. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing pp)
Uses of Value in com.iizix
Fields in com.iizix declared as Value Modifier and Type Field Description Value
Value.Type. nullValue
The null value for the type.Methods in com.iizix that return Value Modifier and Type Method Description Value
Value. adjust(java.time.temporal.TemporalAdjuster temporalAdjuster)
Adjusts the current temporal value with a temporal adjuster.Value
Value. clone()
Clones the value.Value
Value. convert(Value.Type targetType)
Converts this Value from its current value type to the requested target type using the locale looked-up from current thread or if not found, for system default.Value
Value. convert(Value.Type targetType, LocaleInfo localeInfo)
Converts this Value from its current value type to the requested target type using the specified locale information.Value
Value.Type. createDefault()
Creates a default value.static Value
Value. fromCalendar(java.util.Calendar calendar)
Creates a ZonedDateTime value from a Calendar.static Value
Value. fromDateBasedValue(javax.xml.datatype.XMLGregorianCalendar xcal)
Creates a Value from an XMLGregorianCalendar depending on the datatype:static Value
Value. fromDurationInMillis(java.lang.Number millis)
Creates a duration from a numeric value in milliseconds.static Value
Value. fromLocalDate(long millis)
Constructs a LocaleDate value.static Value
Value. fromLocalDate(java.sql.Date date)
Constructs a LocalDate value from an SQL date.static Value
Value. fromLocalDate(java.util.Date date)
Constructs a Date value.static Value
Value. fromLocalDateTime(long millis)
Constructs LocalDateTime from milliseconds since Java epoch value.static Value
Value. fromLocalDateTime(java.sql.Timestamp timestamp)
Constructs a LocalDateTime from a Timestamp value.static Value
Value. fromLocalDateTime(java.util.Date dateAndTime)
Constructs a LocalDateTime from a Date (and time) value.static Value
Value. fromLocalTime(long millis)
Constructs a Time value.static Value
Value. fromLocalTime(java.sql.Time time)
Constructs a Time value.static Value
Value. fromLocalTime(java.util.Date time)
Constructs a Time value.Value
Value.Type. getDefaultValue(boolean isNullAllowed)
Gets a shared instance of anull
or defaultValue
of the specified type depending on theisNullAllowed
flag.static Value
Value. getDefaultValue_StringFallback(Value.Type type, boolean isNullAllowed)
Safely gets a shared instance of anull
or defaultValue
of the specified type depending on theisNullAllowed
flag.static Value
Value. ofSQLType(java.lang.Object value, int sqlType)
Tries to create aValue
instance with a type forced to the default SQL Type mapping.static Value
Value. ofType(java.lang.Object value, Value.Type targetType, LocaleInfo localeInfo)
Tries to create aValue
instance forced to the specified type.static Value
Value. parseValue(java.lang.String value, Value.Type type, java.lang.String pattern, LocaleInfo localeInfo)
Creates a Value object from a String using a specified pattern and locale.Methods in com.iizix with parameters of type Value Modifier and Type Method Description boolean
Value. equals(Value v)
Checks if two values are equal; the type must match as well as the value.boolean
Value. equals(Value v, boolean ignoreType)
Checks if two values are equal; the value (optionally converted) must match.static boolean
Value. equals(Value v1, Value v2)
Checks if two Value's are equal, also being null.static boolean
Value. equals(Value v1, Value v2, boolean ignoreType)
Checks if two Value's are equal, also being null.Uses of Value in com.iizix.api.vs
Constructors in com.iizix.api.vs with parameters of type Value Constructor Description VSFieldEvent(VSField source, Value value, GProp<?> trigger)
Constructs the validation event for an action with a property being the trigger source, e.g.Uses of Value in com.iizix.db.api
Fields in com.iizix.db.api declared as Value Modifier and Type Field Description Value[]
RowInfo. vsValues
The row values.Methods in com.iizix.db.api with parameters of type Value Modifier and Type Method Description void
RowInfo. initialize(int[] vsColumnIndicies, Value.Type[] vsValueTypes, int[] sqlColumnIndicies, java.lang.Object[] sqlValues, Value[] vsValues)
Initializes this same instance for re-use to avoid garbage collection.Constructors in com.iizix.db.api with parameters of type Value Constructor Description RowInfo(ResultSetProps resultSetProps, VSTable table, java.sql.ResultSet resultSet, int[] vsColumnIndicies, Value.Type[] vsValueTypes, int[] sqlColumnIndicies, java.lang.Object[] sqlValues, Value[] vsValues)
Constructor.Uses of Value in com.iizix.db.prop
Methods in com.iizix.db.prop with parameters of type Value Modifier and Type Method Description void
ResultSetColumnProp. onCellValueChanged(VSColumnHeader column, VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set in the column.void
ResultSetProps. onCellValueChanged(VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set.void
InputVariable. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
ResultProps. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.Uses of Value in com.iizix.prop
Methods in com.iizix.prop with parameters of type Value Modifier and Type Method Description static GDateTime
GDateTime. fromValue(Value value)
Helper to constructs a date/time from aValue
, if the Value is of the Value Types LocalTime, OffsetTime, LocalDate, LocalDateTime, OffsetDateTime or ZonedDateTime.Constructors in com.iizix.prop with parameters of type Value Constructor Description ValueProp(Atom propertyAtom, Value value)
Creates the value property with the specified name.Uses of Value in com.iizix.prop.content
Methods in com.iizix.prop.content with parameters of type Value Modifier and Type Method Description void
AbstractContentUIContainer. onCellValueChanged(VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set.Uses of Value in com.iizix.prop.ui
Methods in com.iizix.prop.ui that return Value Modifier and Type Method Description Value
IUIComp. getValue(Atom atom)
Gets the value from a property namedatom
.Value
IUIComp. getValue(java.lang.String name)
Gets the value from a property namedname
.Value
UIComp. getValue(Atom atom)
Gets the value from a property namedatom
.Value
UIComp. getValue(java.lang.String name)
Gets the value from a property namedname
.Methods in com.iizix.prop.ui with parameters of type Value Modifier and Type Method Description void
UIAbstractListChoice. onCellValueChanged(VSColumnHeader column, VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set in the column.void
MUISwitch. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
UIAbstractListChoice. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
UICalendar. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
UICheckBox. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
UICheckedMenuItem. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
UIComp. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
UIProgress. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.static void
UIRadioButton. onValueChanged(UIComp comp, VSField field, Value value, IPostEventProcessing postProcessing)
Called when the field value is set.void
UIRadioButton. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
UIRadioMenuItem. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
UISlider. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.Uses of Value in com.iizix.prop.ui.chart.series
Methods in com.iizix.prop.ui.chart.series with parameters of type Value Modifier and Type Method Description void
Series. onCellValueChanged(VSColumnHeader column, VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set in the column.Uses of Value in com.iizix.prop.ui.datetime
Methods in com.iizix.prop.ui.datetime with parameters of type Value Modifier and Type Method Description void
UIDateTime. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.Uses of Value in com.iizix.prop.ui.map
Methods in com.iizix.prop.ui.map with parameters of type Value Modifier and Type Method Description void
UIMap. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.Uses of Value in com.iizix.prop.ui.mlist
Methods in com.iizix.prop.ui.mlist with parameters of type Value Modifier and Type Method Description void
MLItemProp. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.Uses of Value in com.iizix.prop.ui.table
Methods in com.iizix.prop.ui.table with parameters of type Value Modifier and Type Method Description void
UITable. onCellValueChanged(VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set.void
UITableColumn. onCellValueChanged(VSColumnHeader column, VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set in the column.void
UITable. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.Uses of Value in com.iizix.prop.vs
Fields in com.iizix.prop.vs declared as Value Modifier and Type Field Description Value
VSCellData. value
The value, initialized by default tonull
.Methods in com.iizix.prop.vs that return Value Modifier and Type Method Description Value
VSField. adjustValue(java.time.temporal.TemporalAdjuster temporalAdjuster, GProp<?> trigger)
Adjusts the current temporal value with a temporal adjuster.Value
VSField. adjustValue(java.time.ZoneId zoneID, GProp<?> trigger)
Adjusts the current ZonedDateTime value with a new Zone ID.Value
VSColumnHeader. createEmptyValue()
Creates an empty Value for the column type.Value
VSField. getRawValue()
Gets the raw value of the field.Value[]
VSTable. getRowValues(int row)
Gets the values for a row of a certain index.Value
VSRow. getValue(int columnIndex)
Gets the value at specified column index.Value
VSRow. getValueOfColumn(java.lang.String columnName)
Gets the value of specified column name.Value[]
VSRow. getValues()
Gets the values of for the row.Methods in com.iizix.prop.vs with parameters of type Value Modifier and Type Method Description VSRow
VSTable. addRow(Value[] values)
Adds a row of Value's.int
VSField. convertEqualsValue(GProp<?> trigger, Value... values)
Verifies if a value could potentially be equal to the value in the field using conversion.VSField
VSRow. createField(Value value)
Creates a new field with a unique name that then can be added to this row.protected VSRow
VSTable. createRow(Atom a, Value[] values)
Creates a row property with values.VSRow
VSTable. insertRow(Value[] values, int before)
Inserts a row of Value's.void
IVSColumnListener. onCellValueChanged(VSColumnHeader column, VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set in the column.void
IVSTableListener. onCellValueChanged(VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set.void
VSColumnAdapter. onCellValueChanged(VSColumnHeader column, VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set in the column.void
VSTableAdapter. onCellValueChanged(VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set.void
IVSFieldListener. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.void
VSFieldAdapter. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.boolean
VSField. setRawValue(Value value, GProp<?> trigger)
Sets the raw value of the field.boolean
VSField. setRawValue(Value value, IComplexOperation op)
Sets the raw value of the field with undo/redo support.Constructors in com.iizix.prop.vs with parameters of type Value Constructor Description VSRow(Atom propertyAtom, Value[] values)
Creates a VirtualSpace Row property with the specified name.Uses of Value in com.iizix.prop.vs.actor
Methods in com.iizix.prop.vs.actor that return Value Modifier and Type Method Description Value
SetSourceFieldValue.Settings. getValueToSet()
Gets the value to set.Value
SetTargetFieldValue.Settings. getValueToSet()
Gets the value to set.Methods in com.iizix.prop.vs.actor with parameters of type Value Modifier and Type Method Description VSFieldEvent
FieldActors. validate(Value value, GProp<?> trigger)
Validate a value.Uses of Value in com.iizix.term.prop
Methods in com.iizix.term.prop with parameters of type Value Modifier and Type Method Description void
ScreenFieldProp. onCellValueChanged(VSColumnHeader column, VSField cell, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the cell value is set in the column.void
ScreenFieldProp. onValueChanged(VSField field, Value value, GProp<?> trigger, IPostEventProcessing postProcessing)
Called when the field value is set.Uses of Value in com.iizix.ws.api
Methods in com.iizix.ws.api that return Value Modifier and Type Method Description default Value
IOutputVariableConverter. convertValue(java.lang.String value, int dataType)
Converts the String contents to aValue
.Uses of Value in com.iizix.ws.prop
Methods in com.iizix.ws.prop that return Value Modifier and Type Method Description Value
OutputColumn. getNullReplacement()
Get the Null Replacement Value.Value
OutputVariable. getNullReplacement()
Get the Null Replacement Value.Uses of Value in com.iizix.ws.prop.url
Methods in com.iizix.ws.prop.url that return Value Modifier and Type Method Description Value
URLInputParameter. getValue(IAppSessionGyro appGyro)
Gets the current value.