The returned map will throw an {@code IllegalArgumentException}on an attempt to insert a key outside its range. @param fromKey low endpoint of the keys in the returned map @param inclusive {@code true} if the low endpointis to be included in the returned view @return a view of the portion of this map whose keys are greater than(or equal to, if {@code inclusive} is true) {@code fromKey} @throws ClassCastException if {@code fromKey} is not compatiblewith this map's comparator (or, if the map has no comparator, if {@code fromKey} does not implement {@link Comparable}). Implementations may, but are not required to, throw this exception if {@code fromKey} cannot be compared to keyscurrently in the map. @throws NullPointerException if {@code fromKey} is nulland this map does not permit null keys @throws IllegalArgumentException if this map itself has arestricted range, and {@code fromKey} lies outside thebounds of the range
The returned map will throw an IllegalArgumentException on an attempt to insert a key outside its range. @param fromKey low endpoint (inclusive) of the keys in the returned map @return a view of the portion of this map whose keys are greaterthan or equal to fromKey @throws ClassCastException if fromKey is not compatiblewith this map's comparator (or, if the map has no comparator, if fromKey does not implement {@link Comparable}). Implementations may, but are not required to, throw this exception if fromKey cannot be compared to keys currently in the map. @throws NullPointerException if fromKey is null andthis map does not permit null keys @throws IllegalArgumentException if this map itself has arestricted range, and fromKey lies outside the bounds of the range
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|