Interface ITupleValueDescriptor
- 
- All Superinterfaces:
 IValueDescriptor<List<?>,ITupleValueBuilder>,Serializable
public interface ITupleValueDescriptor extends IValueDescriptor<List<?>,ITupleValueBuilder>
AIValueDescriptorfor a tuple value. The value must be a a fixed list of elements. Each element may be of a different type.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EValueTypegetBaseType()default Class<?>getJavaClass()List<IValueDescriptor<?,?>>getTupleValueDescriptors()- 
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, getKnownProperties, is, unwrap 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getBaseType
default EValueType getBaseType()
- Specified by:
 getBaseTypein interfaceIValueDescriptor<List<?>,ITupleValueBuilder>- Returns:
 - The basic type of value described by this value descriptor.
 
 
- 
getJavaClass
default Class<?> getJavaClass()
- Specified by:
 getJavaClassin interfaceIValueDescriptor<List<?>,ITupleValueBuilder>- Returns:
 - The Java class of the values described by this descriptor.
 
 
- 
getTupleValueDescriptors
List<IValueDescriptor<?,?>> getTupleValueDescriptors()
- Returns:
 - The value descriptors for each tuple element. The size of this list is equal to the fixed length of the tuple.
 
 
 - 
 
 -