Package org.apache.flink.configuration
Interface DescribedEnum
-
- All Known Implementing Classes:
BatchShuffleMode,CheckpointType,ClusterOptions.UserSystemExitMode,ExecutionConfig.ClosureCleanerLevel,ExternalizedCheckpointRetention,JobManagerOptions.SchedulerType,MetricOptions.JobStatusMetrics,RecoveryClaimMode,SavepointFormatType
@PublicEvolving public interface DescribedEnumDescribe enum constants used inConfigOptions.For enums used as config options, this interface can be implemented to provide a
Descriptionfor each enum constant. This will be used when generating documentation for config options to include a list of available values alongside their respective descriptions.More precisely, only an
InlineElementcan be returned as block elements cannot be nested into a list.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InlineElementgetDescription()Returns the description for the enum constant.
-
-
-
Method Detail
-
getDescription
InlineElement getDescription()
Returns the description for the enum constant.If you want to include links or code blocks, use
TextElement.wrap(InlineElement...)to wrap multiple inline elements into a single one.
-
-