Interface IListValueDescriptor<V>
- 
- Type Parameters:
 V- Type of the list elements.
- All Superinterfaces:
 IValueDescriptor<List<V>,IListValueBuilder<V>>,Serializable
public interface IListValueDescriptor<V> extends IValueDescriptor<List<V>,IListValueBuilder<V>>
AIValueDescriptorfor a list value. The value must be a list of elements. Optionally, the length of the list can be restricted.- 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()IValueDescriptor<V,? extends IValueBuilder<V>>getItemValueDescriptor()default Class<?>getJavaClass()com.google.common.collect.Range<Integer>getLength()- 
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<V>,IListValueBuilder<V>>- Returns:
 - The basic type of value described by this value descriptor.
 
 
- 
getItemValueDescriptor
IValueDescriptor<V,? extends IValueBuilder<V>> getItemValueDescriptor()
- Returns:
 - The value descriptor for the list elements. Each list element must conform to this descriptor.
 
 
- 
getJavaClass
default Class<?> getJavaClass()
- Specified by:
 getJavaClassin interfaceIValueDescriptor<List<V>,IListValueBuilder<V>>- Returns:
 - The Java class of the values described by this descriptor.
 
 
- 
getLength
com.google.common.collect.Range<Integer> getLength()
- Returns:
 - The range allowed for the length of the list.
 
 
 - 
 
 -