Interface ILargeStringValueDescriptor
-
- All Superinterfaces:
IValueDescriptor<LargeString,ILargeStringValueBuilder>
,Serializable
public interface ILargeStringValueDescriptor extends IValueDescriptor<LargeString,ILargeStringValueBuilder>
AIValueDescriptor
for string value. The value must be a large string, consisting of any number of characters.- Since:
- 7.2.1
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ILargeStringValueDescriptorBuilder
configure()
Creates a new builder pre-configured with the settings of this descriptor.default EValueType
getBaseType()
default Class<LargeString>
getJavaClass()
ILargeStringValueDescriptor
withDefaultValue(Object defaultValue)
ILargeStringValueDescriptor
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
ILargeStringValueDescriptorBuilder 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<LargeString,ILargeStringValueBuilder>
- Returns:
- A new builder pre-configured with the settings of this descriptor.
-
getBaseType
default EValueType getBaseType()
- Specified by:
getBaseType
in interfaceIValueDescriptor<LargeString,ILargeStringValueBuilder>
- Returns:
- The basic type of value described by this value descriptor.
-
getJavaClass
default Class<LargeString> getJavaClass()
- Specified by:
getJavaClass
in interfaceIValueDescriptor<LargeString,ILargeStringValueBuilder>
- Returns:
- The Java class of the values described by this descriptor.
-
withDefaultValue
ILargeStringValueDescriptor withDefaultValue(Object defaultValue)
- Specified by:
withDefaultValue
in interfaceIValueDescriptor<LargeString,ILargeStringValueBuilder>
- 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
ILargeStringValueDescriptor withDescription(String description)
- Specified by:
withDescription
in interfaceIValueDescriptor<LargeString,ILargeStringValueBuilder>
- Parameters:
description
- The new description.- Returns:
- A new descriptor with the given description.
-
-