Interface IStringValueDescriptor
-
- All Superinterfaces:
IValueDescriptor<String,IStringValueBuilder>,Serializable
public interface IStringValueDescriptor extends IValueDescriptor<String,IStringValueBuilder>
AIValueDescriptorfor string value. The value must be a string, consisting of any number of characters.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IStringValueDescriptorBuilderconfigure()Creates a new builder pre-configured with the settings of this descriptor.default EValueTypegetBaseType()default Class<String>getJavaClass()IStringValueDescriptorwithDefaultValue(Object defaultValue)IStringValueDescriptorwithDescription(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
IStringValueDescriptorBuilder 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<String,IStringValueBuilder>- Returns:
- A new builder pre-configured with the settings of this descriptor.
-
getBaseType
default EValueType getBaseType()
- Specified by:
getBaseTypein interfaceIValueDescriptor<String,IStringValueBuilder>- Returns:
- The basic type of value described by this value descriptor.
-
getJavaClass
default Class<String> getJavaClass()
- Specified by:
getJavaClassin interfaceIValueDescriptor<String,IStringValueBuilder>- Returns:
- The Java class of the values described by this descriptor.
-
withDefaultValue
IStringValueDescriptor withDefaultValue(Object defaultValue)
- Specified by:
withDefaultValuein interfaceIValueDescriptor<String,IStringValueBuilder>- 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
IStringValueDescriptor withDescription(String description)
- Specified by:
withDescriptionin interfaceIValueDescriptor<String,IStringValueBuilder>- Parameters:
description- The new description.- Returns:
- A new descriptor with the given description.
-
-