Uses of Class
com.luciad.fusion.platform.model.properties.TLfnCustomPropertyDefinitions.Builder
Packages that use TLfnCustomPropertyDefinitions.Builder
Package
Description
This package contains interfaces and classes related to custom properties.
-
Uses of TLfnCustomPropertyDefinitions.Builder in com.luciad.fusion.platform.model.properties
Methods in com.luciad.fusion.platform.model.properties that return TLfnCustomPropertyDefinitions.BuilderModifier and TypeMethodDescriptionTLfnCustomPropertyDefinitions.Builder.addBooleanProperty
(String aPropertyName) Defines a property of type Boolean.TLfnCustomPropertyDefinitions.Builder.addBooleanProperty
(String aPropertyName, String aPropertyDisplayName, boolean aQueryable) Defines a property of type Boolean.TLfnCustomPropertyDefinitions.Builder.addDateProperty
(String aPropertyName) Defines a property of type Date.TLfnCustomPropertyDefinitions.Builder.addDateProperty
(String aPropertyName, String aPropertyDisplayName, boolean aQueryable) Defines a property of type Date.TLfnCustomPropertyDefinitions.Builder.addDoubleProperty
(String aPropertyName) Defines a property of type Double.TLfnCustomPropertyDefinitions.Builder.addDoubleProperty
(String aPropertyName, String aPropertyDisplayName, boolean aQueryable) Adds information about a property of type Double.TLfnCustomPropertyDefinitions.Builder.addEnumProperty
(String aPropertyName, String aPropertyDisplayName, Set<String> aPossibleValues, boolean aQueryable) Deprecated.as of release 2024.0.TLfnCustomPropertyDefinitions.Builder.addEnumProperty
(String aPropertyName, Set<String> aPossibleValues) Deprecated.as of release 2024.0, UseaddStringProperty(String, Set)
instead.TLfnCustomPropertyDefinitions.Builder.addLongProperty
(String aPropertyName) Defines a property of type Long.TLfnCustomPropertyDefinitions.Builder.addLongProperty
(String aPropertyName, String aPropertyDisplayName, boolean aQueryable) Defines a property of type Long.TLfnCustomPropertyDefinitions.Builder.addLongProperty
(String aPropertyName, String aPropertyDisplayName, Set<Long> aPossibleValues, boolean aQueryable) Defines a property of type Long, that has a limited set of possible values.TLfnCustomPropertyDefinitions.Builder.addLongProperty
(String aPropertyName, Set<Long> aPossibleValues) Defines a property of type Long, that has a limited set of possible values.TLfnCustomPropertyDefinitions.Builder.addStringProperty
(String aPropertyName) Defines a property of type String.TLfnCustomPropertyDefinitions.Builder.addStringProperty
(String aPropertyName, String aPropertyDisplayName, boolean aQueryable) Defines a property of type String.TLfnCustomPropertyDefinitions.Builder.addStringProperty
(String aPropertyName, String aPropertyDisplayName, Set<String> aPossibleValues, boolean aQueryable) Defines a property of type String, that has a limited set of possible values.TLfnCustomPropertyDefinitions.Builder.addStringProperty
(String aPropertyName, Set<String> aPossibleValues) Defines a property of type String that has a limited set of possible values.TLfnCustomPropertyDefinitions.newBuilder()
Creates a new builder to start building aTLfnCustomPropertyDefinitions
instance.