Interface FieldBaseStructureDefinition
-
- All Superinterfaces:
StructureDefinition
- All Known Implementing Classes:
ClassStructureDefinition
,SimpleStructureDefinition
@Internal public interface FieldBaseStructureDefinition extends StructureDefinition
Represents a structure definition based on fields
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getFieldNameAt(int index)
Obtains the name of the field in the index positionint
getFieldSize()
Obtains the number of fields that this structure hasjava.lang.Class<?>
getFieldTypeAt(int index)
Obtains the type of the field in the index position-
Methods inherited from interface org.activiti.engine.impl.bpmn.data.StructureDefinition
createInstance, getId
-
-
-
-
Method Detail
-
getFieldSize
int getFieldSize()
Obtains the number of fields that this structure has- Returns:
- the number of fields that this structure has
-
getFieldNameAt
java.lang.String getFieldNameAt(int index)
Obtains the name of the field in the index position- Parameters:
index
- the position of the field- Returns:
- the name of the field
-
getFieldTypeAt
java.lang.Class<?> getFieldTypeAt(int index)
Obtains the type of the field in the index position- Parameters:
index
- the position of the field- Returns:
- the type of the field
-
-