Interface INullValueDescriptor
-
- All Superinterfaces:
IValueDescriptor<Void,INullValueBuilder>
,Serializable
public interface INullValueDescriptor extends IValueDescriptor<Void,INullValueBuilder>
AIValueDescriptor
for a null value. The value must be identical tonull
.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description INullValueDescriptorBuilder
configure()
Creates a new builder pre-configured with the settings of this descriptor.default EValueType
getBaseType()
default Class<?>
getJavaClass()
default INullValueDescriptor
withDefaultValue(Object defaultValue)
INullValueDescriptor
withDescription(String description)
-
Methods inherited from interface de.xima.fc.interfaces.workflow.value.IValueDescriptor
acceptsValue, asAny, asBoolean, asConst, asFloat, asInteger, asLargeString, asList, asList, asMap, asMap, asNull, asRecord, asString, asTuple, asUnion, asUnion, asVoid, builder, getDefaultValue, getDescription, getFullType, getKnownProperties, getKnownProperties, intersect, is, unwrap
-
-
-
-
Method Detail
-
configure
INullValueDescriptorBuilder configure()
Description copied from interface:IValueDescriptor
Creates a new builder pre-configured with the settings of this descriptor. Lets you e.g. add additional properties.- Specified by:
configure
in interfaceIValueDescriptor<Void,INullValueBuilder>
- Returns:
- A new builder pre-configured with the settings of this descriptor.
-
getBaseType
default EValueType getBaseType()
- Specified by:
getBaseType
in interfaceIValueDescriptor<Void,INullValueBuilder>
- Returns:
- The basic type of value described by this value descriptor.
-
getJavaClass
default Class<?> getJavaClass()
- Specified by:
getJavaClass
in interfaceIValueDescriptor<Void,INullValueBuilder>
- Returns:
- The Java class of the values described by this descriptor.
-
withDefaultValue
default INullValueDescriptor withDefaultValue(Object defaultValue)
- Specified by:
withDefaultValue
in interfaceIValueDescriptor<Void,INullValueBuilder>
- Parameters:
defaultValue
- The new default value. May be changed when it does not conform to the restrictions imposed by this descriptor.- Returns:
- A new descriptor with the default value.
-
withDescription
INullValueDescriptor withDescription(String description)
- Specified by:
withDescription
in interfaceIValueDescriptor<Void,INullValueBuilder>
- Parameters:
description
- The new description.- Returns:
- A new descriptor with the given description.
-
-