Package org.kie.dmn.feel.lang
Interface CompositeType
-
- All Superinterfaces:
Type
- All Known Implementing Classes:
JavaBackedType,MapBackedType
public interface CompositeType extends Type
A composite type interface, i.e., a type that contains fields
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanconformsTo(Type t)Check if this type does Conform to specified typetaccordingly to FEEL DMN specification 10.3.2.9.2 Type Conformancejava.util.Map<java.lang.String,Type>getFields()-
Methods inherited from interface org.kie.dmn.feel.lang.Type
getName, isAssignableValue, isInstanceOf
-
-
-
-
Method Detail
-
getFields
java.util.Map<java.lang.String,Type> getFields()
-
conformsTo
default boolean conformsTo(Type t)
Description copied from interface:TypeCheck if this type does Conform to specified typetaccordingly to FEEL DMN specification 10.3.2.9.2 Type Conformance- Specified by:
conformsToin interfaceType- Returns:
- if this type does conform to specified type.
-
-