Package hudson.util
Class TagCloud<T>
- All Implemented Interfaces:
Iterable<TagCloud<T>.Entry>
,Collection<TagCloud<T>.Entry>
,List<TagCloud<T>.Entry>
Represents an order-preserving tag cloud
where each keyword gets a weight and displayed according to their weight.
TODO: define a view on its own.
- Since:
- 1.322
-
Nested Class Summary
Modifier and TypeClassDescriptionfinal class
static interface
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorDescriptionTagCloud
(Iterable<? extends T> inputs, TagCloud.WeightFunction<T> f) Creates a tag cloud. -
Method Summary
Methods inherited from class java.util.AbstractList
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
addAll, contains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, sort, spliterator, toArray, toArray
-
Constructor Details
-
TagCloud
Creates a tag cloud.- Parameters:
f
- Assigns weight to each item.
-
-
Method Details