Interface IConstValueDescriptor<V>
-
- Type Parameters:
V
- Type of the constant value.
- All Superinterfaces:
IValueDescriptor<V,IConstValueBuilder<V>>
,Serializable
public interface IConstValueDescriptor<V> extends IValueDescriptor<V,IConstValueBuilder<V>>
AIValueDescriptor
for a constant value. The value must be equal to a certain constant value.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EValueType
getBaseType()
V
getValue()
-
Methods inherited from interface de.xima.fc.interfaces.workflow.value.IValueDescriptor
acceptsValue, asBoolean, asConst, asFloat, asInteger, asList, asMap, asNull, asRecord, asString, asTuple, asUnion, asVoid, builder, getDefaultValue, getDescription, getFullType, getJavaClass, getKnownProperties, is, unwrap
-
-
-
-
Method Detail
-
getBaseType
default EValueType getBaseType()
- Specified by:
getBaseType
in interfaceIValueDescriptor<V,IConstValueBuilder<V>>
- Returns:
- The basic type of value described by this value descriptor.
-
getValue
V getValue()
- Returns:
- The constant to which the value described by this descriptor must be equal to.
-
-