Interface ILargeStringValueDescriptor
-
- All Superinterfaces:
IValueDescriptor<LargeString,ILargeStringValueBuilder>,Serializable
public interface ILargeStringValueDescriptor extends IValueDescriptor<LargeString,ILargeStringValueBuilder>
AIValueDescriptorfor 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 ILargeStringValueDescriptorBuilderconfigure()Creates a new builder pre-configured with the settings of this descriptor.default EValueTypegetBaseType()default Class<LargeString>getJavaClass()ILargeStringValueDescriptorwithDefaultValue(Object defaultValue)ILargeStringValueDescriptorwithDescription(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:IValueDescriptorCreates a new builder pre-configured with the settings of this descriptor. Lets you e.g. add additional properties.- Specified by:
configurein interfaceIValueDescriptor<LargeString,ILargeStringValueBuilder>- Returns:
- A new builder pre-configured with the settings of this descriptor.
-
getBaseType
default EValueType getBaseType()
- Specified by:
getBaseTypein interfaceIValueDescriptor<LargeString,ILargeStringValueBuilder>- Returns:
- The basic type of value described by this value descriptor.
-
getJavaClass
default Class<LargeString> getJavaClass()
- Specified by:
getJavaClassin interfaceIValueDescriptor<LargeString,ILargeStringValueBuilder>- Returns:
- The Java class of the values described by this descriptor.
-
withDefaultValue
ILargeStringValueDescriptor withDefaultValue(Object defaultValue)
- Specified by:
withDefaultValuein 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:
withDescriptionin interfaceIValueDescriptor<LargeString,ILargeStringValueBuilder>- Parameters:
description- The new description.- Returns:
- A new descriptor with the given description.
-
-