Java Code Examples for org.immutables.value.Value#ReverseOrder

The following examples show how to use org.immutables.value.Value#ReverseOrder . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Companion.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
NavigableSet<Integer> navs();
 
Example 2
Source File: Companion.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
NavigableMap<String, Integer> navsmap();
 
Example 3
Source File: Companion.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
NavigableSet<Integer> navs();
 
Example 4
Source File: Companion.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.Default
@Value.ReverseOrder
default NavigableSet<Integer> navs() {
  return Collections.emptyNavigableSet();
}
 
Example 5
Source File: SortedCollectionWrapper.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
ImmutableSortedMultiset<Elem> getElemMultiset();
 
Example 6
Source File: SortedCollectionWrapper.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
ImmutableSortedMultiset<ImmutableElem> getImmutableElemMultiset();
 
Example 7
Source File: OrderAttributeValue.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
public abstract NavigableSet<String> reverse();
 
Example 8
Source File: OrderAttributeValue.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
public abstract SortedMap<String, String> reverseMap();
 
Example 9
Source File: OrderAttributeValue.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
public abstract SortedMultiset<String> reverseMultiset();
 
Example 10
Source File: UseImmutableCollections.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
ImmutableSortedMap<RetentionPolicy, Integer> sortedMap();
 
Example 11
Source File: JdkColl.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
NavigableSet<Integer> navs();
 
Example 12
Source File: JdkMaps.java    From immutables with Apache License 2.0 4 votes vote down vote up
@Value.ReverseOrder
NavigableMap<String, Integer> navs();