Package | Description |
---|---|
com.google.gwt.core.ext.linker |
Classes for writing Linkers.
|
com.google.gwt.core.ext.linker.impl | |
com.google.gwt.core.ext.soyc |
This package contains interfaces that provide access to
"Story of Your Compile" information.
|
com.google.gwt.core.ext.soyc.impl | |
com.google.gwt.dev.javac | |
com.google.gwt.dev.jjs | |
com.google.gwt.dev.jjs.ast | |
com.google.gwt.dev.util | |
com.google.gwt.dev.util.collect | |
com.google.gwt.user.cellview.client |
The "cellview" widget set.
|
com.google.gwt.user.client.ui |
Widgets, Panels, and other user-interface classes.
|
com.google.gwt.user.server.rpc.impl | |
java.lang | |
java.util |
Modifier and Type | Class and Description |
---|---|
static class |
SymbolData.ClassIdentComparator
A Comparator for use when presenting the data to humans.
|
Modifier and Type | Method and Description |
---|---|
Comparator<? super Artifact<?>> |
ArtifactSet.comparator() |
Modifier and Type | Field and Description |
---|---|
static Comparator<ConfigurationProperty> |
StandardLinkerContext.CONFIGURATION_PROPERTY_COMPARATOR |
static Comparator<SortedMap<SelectionProperty,String>> |
StandardCompilationResult.MAP_COMPARATOR
Smaller maps come before larger maps, then we compare the concatenation of
every value.
|
Modifier and Type | Field and Description |
---|---|
static Comparator<Range> |
Range.DEPENDENCY_ORDER_COMPARATOR
Sorts Ranges so that a Range will be preceded by any Ranges that enclose
it.
|
static Comparator<Member> |
Member.SOURCE_NAME_COMPARATOR
Compares Members based solely on source name.
|
static Comparator<Range> |
Range.SOURCE_ORDER_COMPARATOR
Sorts Ranges into the order in which they would appear in the source code
based on start position and end position.
|
static Comparator<Member> |
Member.TYPE_AND_SOURCE_NAME_COMPARATOR
Compares Members based on type and source name.
|
Modifier and Type | Class and Description |
---|---|
class |
StoryImplComparator
Exists as a real class to allow TreeMaps to be serialized.
|
Modifier and Type | Field and Description |
---|---|
static Comparator<Story> |
StoryImpl.ID_COMPARATOR
Orders StoryImpl's by their id number.
|
Modifier and Type | Field and Description |
---|---|
static Comparator<CompilationUnit> |
CompilationUnit.COMPARATOR |
Modifier and Type | Field and Description |
---|---|
static Comparator<Correlation> |
Correlation.AXIS_IDENT_COMPARATOR
Compares Correlations based on axis and idents.
|
Modifier and Type | Field and Description |
---|---|
static Comparator<HasName> |
HasName.BY_NAME_COMPARATOR
Comparator by name.
|
static Comparator<JMethod> |
JMethod.BY_SIGNATURE_COMPARATOR |
Modifier and Type | Method and Description |
---|---|
void |
JDeclaredType.sortFields(Comparator<? super JField> sort)
Sorts this type's fields according to the specified sort.
|
void |
JMethodBody.sortLocals(Comparator<? super JLocal> sort)
Sorts this method's locals according to the specified sort.
|
void |
JDeclaredType.sortMethods(Comparator<? super JMethod> sort)
Sorts this type's methods according to the specified sort.
|
Modifier and Type | Class and Description |
---|---|
class |
CharArrayComparator
Performs a case-sensitive comparison of char arrays.
|
Modifier and Type | Method and Description |
---|---|
static <T> List<T> |
Lists.sort(List<T> list,
Comparator<? super T> sort) |
Modifier and Type | Method and Description |
---|---|
Comparator<T> |
ColumnSortEvent.ListHandler.getComparator(Column<T,?> column)
Returns the comparator that has been set for the specified column, or
null if no comparator has been set.
|
Modifier and Type | Method and Description |
---|---|
void |
ColumnSortEvent.ListHandler.setComparator(Column<T,?> column,
Comparator<T> comparator)
Set the comparator used to sort the specified column in ascending order.
|
Modifier and Type | Method and Description |
---|---|
void |
MultiWordSuggestOracle.setComparator(Comparator<String> comparator)
Sets the comparator used for sorting candidates from search.
|
Modifier and Type | Field and Description |
---|---|
static Comparator<Field> |
SerializabilityUtil.FIELD_COMPARATOR
Comparator used to sort fields.
|
Modifier and Type | Field and Description |
---|---|
static Comparator<String> |
String.CASE_INSENSITIVE_ORDER |
Modifier and Type | Method and Description |
---|---|
Comparator<? super E> |
PriorityQueue.comparator() |
Comparator<? super E> |
SortedSet.comparator() |
Comparator<? super K> |
SortedMap.comparator() |
Comparator<? super E> |
TreeSet.comparator() |
Comparator<? super K> |
TreeMap.comparator() |
static <T> Comparator<T> |
Collections.reverseOrder() |
static <T> Comparator<T> |
Collections.reverseOrder(Comparator<T> cmp) |
Modifier and Type | Method and Description |
---|---|
static <T> int |
Collections.binarySearch(List<? extends T> sortedList,
T key,
Comparator<? super T> comparator)
Perform a binary search on a sorted List, using a user-specified comparison
function.
|
static <T> int |
Arrays.binarySearch(T[] sortedArray,
T key,
Comparator<? super T> comparator)
Perform a binary search on a sorted object array, using a user-specified
comparison function.
|
static <T> int |
Objects.compare(T a,
T b,
Comparator<? super T> c) |
static <T> T |
Collections.max(Collection<? extends T> coll,
Comparator<? super T> comp) |
static <T> T |
Collections.min(Collection<? extends T> coll,
Comparator<? super T> comp) |
static <T> Comparator<T> |
Collections.reverseOrder(Comparator<T> cmp) |
static <T> void |
Collections.sort(List<T> target,
Comparator<? super T> c) |
static <T> void |
Arrays.sort(T[] x,
Comparator<? super T> c) |
static <T> void |
Arrays.sort(T[] x,
int fromIndex,
int toIndex,
Comparator<? super T> c) |
Constructor and Description |
---|
PriorityQueue(int initialCapacity,
Comparator<? super E> cmp) |
TreeMap(Comparator<? super K> c) |
TreeSet(Comparator<? super E> c) |
Copyright © 2018. All rights reserved.