Interface IVoidValueDescriptor
-
- All Superinterfaces:
IValueDescriptor<Void,IVoidValueBuilder>,Serializable
public interface IVoidValueDescriptor extends IValueDescriptor<Void,IVoidValueBuilder>
AIValueDescriptorfor a void value. The value must be identical tonull.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleanacceptsValue(Object value)default EValueTypegetBaseType()default Class<?>getJavaClass()default IVoidValueDescriptorwithDefaultValue(Object defaultValue)default IVoidValueDescriptorwithDescription(String description)-
Methods inherited from interface de.xima.fc.interfaces.workflow.value.IValueDescriptor
asAny, asBoolean, asConst, asFloat, asInteger, asLargeString, asList, asList, asMap, asMap, asNull, asRecord, asString, asTuple, asUnion, asUnion, asVoid, builder, configure, getDefaultValue, getDescription, getFullType, getKnownProperties, getKnownProperties, intersect, is, unwrap
-
-
-
-
Method Detail
-
acceptsValue
default boolean acceptsValue(Object value)
- Specified by:
acceptsValuein interfaceIValueDescriptor<Void,IVoidValueBuilder>- Parameters:
value- A value to check.- Returns:
truewhen the given value conforms to the restrictions imposed by this value descriptor,falseotherwise.
-
getBaseType
default EValueType getBaseType()
- Specified by:
getBaseTypein interfaceIValueDescriptor<Void,IVoidValueBuilder>- Returns:
- The basic type of value described by this value descriptor.
-
getJavaClass
default Class<?> getJavaClass()
- Specified by:
getJavaClassin interfaceIValueDescriptor<Void,IVoidValueBuilder>- Returns:
- The Java class of the values described by this descriptor.
-
withDefaultValue
default IVoidValueDescriptor withDefaultValue(Object defaultValue)
- Specified by:
withDefaultValuein interfaceIValueDescriptor<Void,IVoidValueBuilder>- 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
default IVoidValueDescriptor withDescription(String description)
- Specified by:
withDescriptionin interfaceIValueDescriptor<Void,IVoidValueBuilder>- Parameters:
description- The new description.- Returns:
- A new descriptor with the given description.
-
-