Interface IAnyValueDescriptor
- 
- All Superinterfaces:
 IValueDescriptor<Object,IAnyValueBuilder>,Serializable
public interface IAnyValueDescriptor extends IValueDescriptor<Object,IAnyValueBuilder>
AIValueDescriptorfor a value of any type. No restriction is imposed on the value. Use with caution, prefer more specific value descriptors.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IAnyValueDescriptorBuilderconfigure()Creates a new builder pre-configured with the settings of this descriptor.default EValueTypegetBaseType()default Class<Object>getJavaClass()IAnyValueDescriptorwithDefaultValue(Object defaultValue)IAnyValueDescriptorwithDescription(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
IAnyValueDescriptorBuilder configure()
Description copied from interface:IValueDescriptorCreates a new builder pre-configured with the settings of this descriptor. Lets you e.g. add additional properties.- Specified by:
 configurein interfaceIValueDescriptor<Object,IAnyValueBuilder>- Returns:
 - A new builder pre-configured with the settings of this descriptor.
 
 
- 
getBaseType
default EValueType getBaseType()
- Specified by:
 getBaseTypein interfaceIValueDescriptor<Object,IAnyValueBuilder>- Returns:
 - The basic type of value described by this value descriptor.
 
 
- 
getJavaClass
default Class<Object> getJavaClass()
- Specified by:
 getJavaClassin interfaceIValueDescriptor<Object,IAnyValueBuilder>- Returns:
 - The Java class of the values described by this descriptor.
 
 
- 
withDefaultValue
IAnyValueDescriptor withDefaultValue(Object defaultValue)
- Specified by:
 withDefaultValuein interfaceIValueDescriptor<Object,IAnyValueBuilder>- 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
IAnyValueDescriptor withDescription(String description)
- Specified by:
 withDescriptionin interfaceIValueDescriptor<Object,IAnyValueBuilder>- Parameters:
 description- The new description.- Returns:
 - A new descriptor with the given description.
 
 
 - 
 
 -