Uses of Class
org.openstreetmap.josm.data.tagging.ac.AutoCompletionPriority
-
Packages that use AutoCompletionPriority Package Description org.openstreetmap.josm.data.tagging.ac Provides classes for handling autocompletion of tags.org.openstreetmap.josm.gui.tagging.ac Provides GUI classes for handling autocompletion of tags. -
-
Uses of AutoCompletionPriority in org.openstreetmap.josm.data.tagging.ac
Fields in org.openstreetmap.josm.data.tagging.ac declared as AutoCompletionPriority Modifier and Type Field Description static AutoCompletionPriority
AutoCompletionPriority. IS_IN_DATASET
Indicates that this is an arbitrary value from the data set, i.e.static AutoCompletionPriority
AutoCompletionPriority. IS_IN_SELECTION
Indicates that this is a value from a selected object.static AutoCompletionPriority
AutoCompletionPriority. IS_IN_STANDARD
Indicates that this is a standard value, i.e.static AutoCompletionPriority
AutoCompletionPriority. IS_IN_STANDARD_AND_IN_DATASET
Indicates, that the value is standard and it is found in the data.private AutoCompletionPriority
AutoCompletionItem. priority
the priority of this itemstatic AutoCompletionPriority
AutoCompletionPriority. UNKNOWN
Unknown priority.Methods in org.openstreetmap.josm.data.tagging.ac that return AutoCompletionPriority Modifier and Type Method Description AutoCompletionPriority
AutoCompletionItem. getPriority()
Returns the priority.AutoCompletionPriority
AutoCompletionPriority. mergeWith(AutoCompletionPriority other)
Merges two priorities.Methods in org.openstreetmap.josm.data.tagging.ac with parameters of type AutoCompletionPriority Modifier and Type Method Description boolean
AutoCompletionSet. addAll(Collection<String> values, AutoCompletionPriority priority)
Adds a list of strings to this list.int
AutoCompletionPriority. compareTo(AutoCompletionPriority other)
Imposes an ordering on the priorities.AutoCompletionPriority
AutoCompletionPriority. mergeWith(AutoCompletionPriority other)
Merges two priorities.void
AutoCompletionItem. setPriority(AutoCompletionPriority priority)
Sets the priority.Constructors in org.openstreetmap.josm.data.tagging.ac with parameters of type AutoCompletionPriority Constructor Description AutoCompletionItem(String value, AutoCompletionPriority priority)
Constructs a newAutoCompletionItem
with the given value and priority. -
Uses of AutoCompletionPriority in org.openstreetmap.josm.gui.tagging.ac
Methods in org.openstreetmap.josm.gui.tagging.ac with parameters of type AutoCompletionPriority Modifier and Type Method Description void
AutoCompletionList. add(Collection<String> values, AutoCompletionPriority priority)
adds a list of strings to this list.
-