Uses of Enum Class
org.apache.nifi.repository.schema.Repetition
-
Uses of Repetition in org.apache.nifi.repository.schema
Fields in org.apache.nifi.repository.schema declared as RepetitionModifier and TypeFieldDescriptionprivate final RepetitionComplexRecordField.repetitionprivate final RepetitionMapRecordField.repetitionprivate final RepetitionSimpleRecordField.repetitionprivate final RepetitionUnionRecordField.repetitionMethods in org.apache.nifi.repository.schema that return RepetitionModifier and TypeMethodDescriptionComplexRecordField.getRepetition()MapRecordField.getRepetition()RecordField.getRepetition()SimpleRecordField.getRepetition()UnionRecordField.getRepetition()static RepetitionReturns the enum constant of this class with the specified name.static Repetition[]Repetition.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.apache.nifi.repository.schema with parameters of type RepetitionModifierConstructorDescriptionComplexRecordField(String fieldName, Repetition repetition, List<RecordField> subFields) ComplexRecordField(String fieldName, Repetition repetition, RecordField... subFields) MapRecordField(String fieldName, RecordField keyField, RecordField valueField, Repetition repetition) SimpleRecordField(String fieldName, FieldType fieldType, Repetition repetition) UnionRecordField(String fieldName, Repetition repetition, List<RecordField> possibilities) UnionRecordField(String fieldName, Repetition repetition, RecordField... possibilities)