| Package | Description |
|---|---|
| org.apache.nifi.components |
| Modifier and Type | Method and Description |
|---|---|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.addValidator(Validator validator) |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.allowableValues(AllowableValue... values)
Sets the Allowable Values for this Property
|
<E extends Enum<E> & DescribedValue> |
PropertyDescriptor.Builder.allowableValues(Class<E> enumClass)
Stores allowable values from an enum class.
|
<E extends Enum<E>> |
PropertyDescriptor.Builder.allowableValues(E[] values) |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.allowableValues(Set<String> values) |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.allowableValues(String... values) |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.defaultValue(String value)
Specifies the initial value and the default value that will be used
if the user does not specify a value.
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.dependsOn(PropertyDescriptor property,
AllowableValue... dependentValues)
Establishes a relationship between this Property and the given property by declaring that this Property is only relevant if the given Property has a non-null value.
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.dependsOn(PropertyDescriptor property,
String firstDependentValue,
String... additionalDependentValues)
Establishes a relationship between this Property and the given property by declaring that this Property is only relevant if the given Property has a value equal to one of the given
String arguments. |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.description(String description) |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.displayName(String displayName)
Sets a unique id for the property.
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.dynamic(boolean dynamic) |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.dynamicallyModifiesClasspath(boolean dynamicallyModifiesClasspath)
Specifies that the value of this property represents one or more resources that the
framework should add to the classpath of as well as consider when looking for native
libraries for the given component.
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.expressionLanguageSupported(boolean supported)
Deprecated.
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.expressionLanguageSupported(ExpressionLanguageScope expressionLanguageScope)
Sets the scope of the expression language evaluation
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.fromPropertyDescriptor(PropertyDescriptor specDescriptor) |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.identifiesControllerService(Class<? extends ControllerService> controllerServiceDefinition)
Specifies that this property provides the identifier of a Controller
Service that implements the given interface
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.identifiesExternalResource(ResourceCardinality cardinality,
ResourceType resourceType,
ResourceType... additionalResourceTypes)
Specifies that this property references one or more resources that are external to NiFi that the component is meant to consume.
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.name(String name)
Sets the property name.
|
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.required(boolean required) |
PropertyDescriptor.Builder |
PropertyDescriptor.Builder.sensitive(boolean sensitive) |
| Constructor and Description |
|---|
PropertyDescriptor(PropertyDescriptor.Builder builder) |
Copyright © 2022 Apache NiFi Project. All rights reserved.