Package hudson.util
Class TagCloud<T>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<TagCloud.Entry>
-
- hudson.util.TagCloud<T>
-
- All Implemented Interfaces:
Iterable<TagCloud.Entry>
,Collection<TagCloud.Entry>
,List<TagCloud.Entry>
public class TagCloud<T> extends AbstractList<TagCloud.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
Nested Classes Modifier and Type Class Description class
TagCloud.Entry
static interface
TagCloud.WeightFunction<T>
-
Field Summary
-
Fields inherited from class java.util.AbstractList
modCount
-
-
Constructor Summary
Constructors Constructor Description TagCloud(Iterable<? extends T> inputs, TagCloud.WeightFunction<T> f)
Creates a tag cloud.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TagCloud.Entry
get(int index)
int
size()
-
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 Detail
-
TagCloud
public TagCloud(Iterable<? extends T> inputs, TagCloud.WeightFunction<T> f)
Creates a tag cloud.- Parameters:
f
- Assigns weight to each item.
-
-
Method Detail
-
get
public TagCloud.Entry get(int index)
- Specified by:
get
in interfaceList<T>
- Specified by:
get
in classAbstractList<TagCloud.Entry>
-
size
public int size()
- Specified by:
size
in interfaceCollection<T>
- Specified by:
size
in interfaceList<T>
- Specified by:
size
in classAbstractCollection<TagCloud.Entry>
-
-