Index

A B C D E F G H I J L M O P R S T U V W Z 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

A

add(double) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray.Builder
Appends value to the end of the values the built ImmutableDoubleArray will contain.
add(int) - Method in class dev.mccue.guava.primitives.ImmutableIntArray.Builder
Appends value to the end of the values the built ImmutableIntArray will contain.
add(long) - Method in class dev.mccue.guava.primitives.ImmutableLongArray.Builder
Appends value to the end of the values the built ImmutableLongArray will contain.
addAll(double[]) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray.Builder
Appends values, in order, to the end of the values the built ImmutableDoubleArray will contain.
addAll(int[]) - Method in class dev.mccue.guava.primitives.ImmutableIntArray.Builder
Appends values, in order, to the end of the values the built ImmutableIntArray will contain.
addAll(long[]) - Method in class dev.mccue.guava.primitives.ImmutableLongArray.Builder
Appends values, in order, to the end of the values the built ImmutableLongArray will contain.
addAll(ImmutableDoubleArray) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray.Builder
Appends values, in order, to the end of the values the built ImmutableDoubleArray will contain.
addAll(ImmutableIntArray) - Method in class dev.mccue.guava.primitives.ImmutableIntArray.Builder
Appends values, in order, to the end of the values the built ImmutableIntArray will contain.
addAll(ImmutableLongArray) - Method in class dev.mccue.guava.primitives.ImmutableLongArray.Builder
Appends values, in order, to the end of the values the built ImmutableLongArray will contain.
addAll(Iterable<Double>) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray.Builder
Appends values, in order, to the end of the values the built ImmutableDoubleArray will contain.
addAll(Iterable<Integer>) - Method in class dev.mccue.guava.primitives.ImmutableIntArray.Builder
Appends values, in order, to the end of the values the built ImmutableIntArray will contain.
addAll(Iterable<Long>) - Method in class dev.mccue.guava.primitives.ImmutableLongArray.Builder
Appends values, in order, to the end of the values the built ImmutableLongArray will contain.
addAll(Collection<Double>) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray.Builder
Appends values, in order, to the end of the values the built ImmutableDoubleArray will contain.
addAll(Collection<Integer>) - Method in class dev.mccue.guava.primitives.ImmutableIntArray.Builder
Appends values, in order, to the end of the values the built ImmutableIntArray will contain.
addAll(Collection<Long>) - Method in class dev.mccue.guava.primitives.ImmutableLongArray.Builder
Appends values, in order, to the end of the values the built ImmutableLongArray will contain.
addAll(DoubleStream) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray.Builder
Appends all values from stream, in order, to the end of the values the built ImmutableDoubleArray will contain.
addAll(IntStream) - Method in class dev.mccue.guava.primitives.ImmutableIntArray.Builder
Appends all values from stream, in order, to the end of the values the built ImmutableIntArray will contain.
addAll(LongStream) - Method in class dev.mccue.guava.primitives.ImmutableLongArray.Builder
Appends all values from stream, in order, to the end of the values the built ImmutableLongArray will contain.
allPrimitiveTypes() - Static method in class dev.mccue.guava.primitives.Primitives
Returns an immutable set of all nine primitive types (including void).
allWrapperTypes() - Static method in class dev.mccue.guava.primitives.Primitives
Returns an immutable set of all nine primitive-wrapper types (including Void).
asList() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable view of this array's values as a List; note that double values are boxed into Double instances on demand, which can be very expensive.
asList() - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable view of this array's values as a List; note that int values are boxed into Integer instances on demand, which can be very expensive.
asList() - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable view of this array's values as a List; note that long values are boxed into Long instances on demand, which can be very expensive.
asList(boolean...) - Static method in class dev.mccue.guava.primitives.Booleans
Returns a fixed-size list backed by the specified array, similar to Arrays.asList(Object[]).
asList(byte...) - Static method in class dev.mccue.guava.primitives.Bytes
Returns a fixed-size list backed by the specified array, similar to Arrays.asList(Object[]).
asList(char...) - Static method in class dev.mccue.guava.primitives.Chars
Returns a fixed-size list backed by the specified array, similar to Arrays.asList(Object[]).
asList(double...) - Static method in class dev.mccue.guava.primitives.Doubles
Returns a fixed-size list backed by the specified array, similar to Arrays.asList(Object[]).
asList(float...) - Static method in class dev.mccue.guava.primitives.Floats
Returns a fixed-size list backed by the specified array, similar to Arrays.asList(Object[]).
asList(int...) - Static method in class dev.mccue.guava.primitives.Ints
Returns a fixed-size list backed by the specified array, similar to Arrays.asList(Object[]).
asList(long...) - Static method in class dev.mccue.guava.primitives.Longs
Returns a fixed-size list backed by the specified array, similar to Arrays.asList(Object[]).
asList(short...) - Static method in class dev.mccue.guava.primitives.Shorts
Returns a fixed-size list backed by the specified array, similar to Arrays.asList(Object[]).

B

bigIntegerValue() - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the value of this UnsignedInteger as a BigInteger.
bigIntegerValue() - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the value of this UnsignedLong as a BigInteger.
Booleans - Class in dev.mccue.guava.primitives
Static utility methods pertaining to boolean primitives, that are not already found in either Boolean or Arrays.
build() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray.Builder
Returns a new immutable array.
build() - Method in class dev.mccue.guava.primitives.ImmutableIntArray.Builder
Returns a new immutable array.
build() - Method in class dev.mccue.guava.primitives.ImmutableLongArray.Builder
Returns a new immutable array.
builder() - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns a new, empty builder for ImmutableDoubleArray instances, with a default initial capacity.
builder() - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns a new, empty builder for ImmutableIntArray instances, with a default initial capacity.
builder() - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns a new, empty builder for ImmutableLongArray instances, with a default initial capacity.
builder(int) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns a new, empty builder for ImmutableDoubleArray instances, sized to hold up to initialCapacity values without resizing.
builder(int) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns a new, empty builder for ImmutableIntArray instances, sized to hold up to initialCapacity values without resizing.
builder(int) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns a new, empty builder for ImmutableLongArray instances, sized to hold up to initialCapacity values without resizing.
Bytes - Class in dev.mccue.guava.primitives
Static utility methods pertaining to byte primitives, that are not already found in either Byte or Arrays, and interpret bytes as neither signed nor unsigned.
BYTES - Static variable in class dev.mccue.guava.primitives.Chars
The number of bytes required to represent a primitive char value.
BYTES - Static variable in class dev.mccue.guava.primitives.Doubles
The number of bytes required to represent a primitive double value.
BYTES - Static variable in class dev.mccue.guava.primitives.Floats
The number of bytes required to represent a primitive float value.
BYTES - Static variable in class dev.mccue.guava.primitives.Ints
The number of bytes required to represent a primitive int value.
BYTES - Static variable in class dev.mccue.guava.primitives.Longs
The number of bytes required to represent a primitive long value.
BYTES - Static variable in class dev.mccue.guava.primitives.Shorts
The number of bytes required to represent a primitive short value.

C

Chars - Class in dev.mccue.guava.primitives
Static utility methods pertaining to char primitives, that are not already found in either Character or Arrays.
checkedCast(long) - Static method in class dev.mccue.guava.primitives.Chars
Returns the char value that is equal to value, if possible.
checkedCast(long) - Static method in class dev.mccue.guava.primitives.Ints
Returns the int value that is equal to value, if possible.
checkedCast(long) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the short value that is equal to value, if possible.
checkedCast(long) - Static method in class dev.mccue.guava.primitives.SignedBytes
Returns the byte value that is equal to value, if possible.
checkedCast(long) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns the byte value that, when treated as unsigned, is equal to value, if possible.
checkedCast(long) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns the int value that, when treated as unsigned, is equal to value, if possible.
compare(boolean, boolean) - Static method in class dev.mccue.guava.primitives.Booleans
Compares the two specified boolean values in the standard way (false is considered less than true).
compare(byte, byte) - Static method in class dev.mccue.guava.primitives.SignedBytes
Compares the two specified byte values.
compare(byte, byte) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Compares the two specified byte values, treating them as unsigned values between 0 and 255 inclusive.
compare(char, char) - Static method in class dev.mccue.guava.primitives.Chars
Compares the two specified char values.
compare(double, double) - Static method in class dev.mccue.guava.primitives.Doubles
Compares the two specified double values.
compare(float, float) - Static method in class dev.mccue.guava.primitives.Floats
Compares the two specified float values using Float.compare(float, float).
compare(int, int) - Static method in class dev.mccue.guava.primitives.Ints
Compares the two specified int values.
compare(int, int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Compares the two specified int values, treating them as unsigned values between 0 and 2^32 - 1 inclusive.
compare(long, long) - Static method in class dev.mccue.guava.primitives.Longs
Compares the two specified long values.
compare(long, long) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Compares the two specified long values, treating them as unsigned values between 0 and 2^64 - 1 inclusive.
compare(short, short) - Static method in class dev.mccue.guava.primitives.Shorts
Compares the two specified short values.
compareTo(UnsignedInteger) - Method in class dev.mccue.guava.primitives.UnsignedInteger
Compares this unsigned integer to another unsigned integer.
compareTo(UnsignedLong) - Method in class dev.mccue.guava.primitives.UnsignedLong
 
concat(boolean[]...) - Static method in class dev.mccue.guava.primitives.Booleans
Returns the values from each provided array combined into a single array.
concat(byte[]...) - Static method in class dev.mccue.guava.primitives.Bytes
Returns the values from each provided array combined into a single array.
concat(char[]...) - Static method in class dev.mccue.guava.primitives.Chars
Returns the values from each provided array combined into a single array.
concat(double[]...) - Static method in class dev.mccue.guava.primitives.Doubles
Returns the values from each provided array combined into a single array.
concat(float[]...) - Static method in class dev.mccue.guava.primitives.Floats
Returns the values from each provided array combined into a single array.
concat(int[]...) - Static method in class dev.mccue.guava.primitives.Ints
Returns the values from each provided array combined into a single array.
concat(long[]...) - Static method in class dev.mccue.guava.primitives.Longs
Returns the values from each provided array combined into a single array.
concat(short[]...) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the values from each provided array combined into a single array.
constrainToRange(char, char, char) - Static method in class dev.mccue.guava.primitives.Chars
Returns the value nearest to value which is within the closed range [min..max].
constrainToRange(double, double, double) - Static method in class dev.mccue.guava.primitives.Doubles
Returns the value nearest to value which is within the closed range [min..max].
constrainToRange(float, float, float) - Static method in class dev.mccue.guava.primitives.Floats
Returns the value nearest to value which is within the closed range [min..max].
constrainToRange(int, int, int) - Static method in class dev.mccue.guava.primitives.Ints
Returns the value nearest to value which is within the closed range [min..max].
constrainToRange(long, long, long) - Static method in class dev.mccue.guava.primitives.Longs
Returns the value nearest to value which is within the closed range [min..max].
constrainToRange(short, short, short) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the value nearest to value which is within the closed range [min..max].
contains(boolean[], boolean) - Static method in class dev.mccue.guava.primitives.Booleans
Returns true if target is present as an element anywhere in array.
contains(byte[], byte) - Static method in class dev.mccue.guava.primitives.Bytes
Returns true if target is present as an element anywhere in array.
contains(char[], char) - Static method in class dev.mccue.guava.primitives.Chars
Returns true if target is present as an element anywhere in array.
contains(double) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns true if target is present at any index in this array.
contains(double[], double) - Static method in class dev.mccue.guava.primitives.Doubles
Returns true if target is present as an element anywhere in array.
contains(float[], float) - Static method in class dev.mccue.guava.primitives.Floats
Returns true if target is present as an element anywhere in array.
contains(int) - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns true if target is present at any index in this array.
contains(int[], int) - Static method in class dev.mccue.guava.primitives.Ints
Returns true if target is present as an element anywhere in array.
contains(long) - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns true if target is present at any index in this array.
contains(long[], long) - Static method in class dev.mccue.guava.primitives.Longs
Returns true if target is present as an element anywhere in array.
contains(short[], short) - Static method in class dev.mccue.guava.primitives.Shorts
Returns true if target is present as an element anywhere in array.
copyOf(double[]) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
copyOf(int[]) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
copyOf(long[]) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
copyOf(Iterable<Double>) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
copyOf(Iterable<Integer>) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
copyOf(Iterable<Long>) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
copyOf(Collection<Double>) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
copyOf(Collection<Integer>) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
copyOf(Collection<Long>) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
copyOf(DoubleStream) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing all the values from stream, in order.
copyOf(IntStream) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing all the values from stream, in order.
copyOf(LongStream) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing all the values from stream, in order.
countTrue(boolean...) - Static method in class dev.mccue.guava.primitives.Booleans
Returns the number of values that are true.

D

decode(String) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns the unsigned int value represented by the given string.
decode(String) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns the unsigned long value represented by the given string.
dev.mccue.guava.primitives - module dev.mccue.guava.primitives
 
dev.mccue.guava.primitives - package dev.mccue.guava.primitives
Static utilities for the eight primitive types and void, and value types for treating them as unsigned or storing them in immutable arrays.
divide(int, int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns dividend / divisor, where the dividend and divisor are treated as unsigned 32-bit quantities.
divide(long, long) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns dividend / divisor, where the dividend and divisor are treated as unsigned 64-bit quantities.
dividedBy(UnsignedInteger) - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the result of dividing this by val.
dividedBy(UnsignedLong) - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the result of dividing this by val.
Doubles - Class in dev.mccue.guava.primitives
Static utility methods pertaining to double primitives, that are not already found in either Double or Arrays.
doubleValue() - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the value of this UnsignedInteger as a float, analogous to a widening primitive conversion from int to double, and correctly rounded.
doubleValue() - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the value of this UnsignedLong as a double, analogous to a widening primitive conversion from long to double, and correctly rounded.

E

ensureCapacity(boolean[], int, int) - Static method in class dev.mccue.guava.primitives.Booleans
Returns an array containing the same values as array, but guaranteed to be of a specified minimum length.
ensureCapacity(byte[], int, int) - Static method in class dev.mccue.guava.primitives.Bytes
Returns an array containing the same values as array, but guaranteed to be of a specified minimum length.
ensureCapacity(char[], int, int) - Static method in class dev.mccue.guava.primitives.Chars
Returns an array containing the same values as array, but guaranteed to be of a specified minimum length.
ensureCapacity(double[], int, int) - Static method in class dev.mccue.guava.primitives.Doubles
Returns an array containing the same values as array, but guaranteed to be of a specified minimum length.
ensureCapacity(float[], int, int) - Static method in class dev.mccue.guava.primitives.Floats
Returns an array containing the same values as array, but guaranteed to be of a specified minimum length.
ensureCapacity(int[], int, int) - Static method in class dev.mccue.guava.primitives.Ints
Returns an array containing the same values as array, but guaranteed to be of a specified minimum length.
ensureCapacity(long[], int, int) - Static method in class dev.mccue.guava.primitives.Longs
Returns an array containing the same values as array, but guaranteed to be of a specified minimum length.
ensureCapacity(short[], int, int) - Static method in class dev.mccue.guava.primitives.Shorts
Returns an array containing the same values as array, but guaranteed to be of a specified minimum length.
equals(Object) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns true if object is an ImmutableDoubleArray containing the same values as this one, in the same order.
equals(Object) - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns true if object is an ImmutableIntArray containing the same values as this one, in the same order.
equals(Object) - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns true if object is an ImmutableLongArray containing the same values as this one, in the same order.
equals(Object) - Method in class dev.mccue.guava.primitives.UnsignedInteger
 
equals(Object) - Method in class dev.mccue.guava.primitives.UnsignedLong
 

F

falseFirst() - Static method in class dev.mccue.guava.primitives.Booleans
Returns a Comparator<Boolean> that sorts false before true.
Floats - Class in dev.mccue.guava.primitives
Static utility methods pertaining to float primitives, that are not already found in either Float or Arrays.
floatValue() - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the value of this UnsignedInteger as a float, analogous to a widening primitive conversion from int to float, and correctly rounded.
floatValue() - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the value of this UnsignedLong as a float, analogous to a widening primitive conversion from long to float, and correctly rounded.
forEach(DoubleConsumer) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Invokes consumer for each value contained in this array, in order.
forEach(IntConsumer) - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Invokes consumer for each value contained in this array, in order.
forEach(LongConsumer) - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Invokes consumer for each value contained in this array, in order.
fromByteArray(byte[]) - Static method in class dev.mccue.guava.primitives.Chars
Returns the char value whose big-endian representation is stored in the first 2 bytes of bytes; equivalent to ByteBuffer.wrap(bytes).getChar().
fromByteArray(byte[]) - Static method in class dev.mccue.guava.primitives.Ints
Returns the int value whose big-endian representation is stored in the first 4 bytes of bytes; equivalent to ByteBuffer.wrap(bytes).getInt().
fromByteArray(byte[]) - Static method in class dev.mccue.guava.primitives.Longs
Returns the long value whose big-endian representation is stored in the first 8 bytes of bytes; equivalent to ByteBuffer.wrap(bytes).getLong().
fromByteArray(byte[]) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the short value whose big-endian representation is stored in the first 2 bytes of bytes; equivalent to ByteBuffer.wrap(bytes).getShort().
fromBytes(byte, byte) - Static method in class dev.mccue.guava.primitives.Chars
Returns the char value whose byte representation is the given 2 bytes, in big-endian order; equivalent to Chars.fromByteArray(new byte[] {b1, b2}).
fromBytes(byte, byte) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the short value whose byte representation is the given 2 bytes, in big-endian order; equivalent to Shorts.fromByteArray(new byte[] {b1, b2}).
fromBytes(byte, byte, byte, byte) - Static method in class dev.mccue.guava.primitives.Ints
Returns the int value whose byte representation is the given 4 bytes, in big-endian order; equivalent to Ints.fromByteArray(new byte[] {b1, b2, b3, b4}).
fromBytes(byte, byte, byte, byte, byte, byte, byte, byte) - Static method in class dev.mccue.guava.primitives.Longs
Returns the long value whose byte representation is the given 8 bytes, in big-endian order; equivalent to Longs.fromByteArray(new byte[] {b1, b2, b3, b4, b5, b6, b7, b8}).
fromIntBits(int) - Static method in class dev.mccue.guava.primitives.UnsignedInteger
Returns an UnsignedInteger corresponding to a given bit representation.
fromLongBits(long) - Static method in class dev.mccue.guava.primitives.UnsignedLong
Returns an UnsignedLong corresponding to a given bit representation.

G

get(int) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns the double value present at the given index.
get(int) - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns the int value present at the given index.
get(int) - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns the long value present at the given index.

H

hashCode() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an unspecified hash code for the contents of this immutable array.
hashCode() - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an unspecified hash code for the contents of this immutable array.
hashCode() - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an unspecified hash code for the contents of this immutable array.
hashCode() - Method in class dev.mccue.guava.primitives.UnsignedInteger
 
hashCode() - Method in class dev.mccue.guava.primitives.UnsignedLong
 
hashCode(boolean) - Static method in class dev.mccue.guava.primitives.Booleans
Returns a hash code for value; equal to the result of invoking ((Boolean) value).hashCode().
hashCode(byte) - Static method in class dev.mccue.guava.primitives.Bytes
Returns a hash code for value; equal to the result of invoking ((Byte) value).hashCode().
hashCode(char) - Static method in class dev.mccue.guava.primitives.Chars
Returns a hash code for value; equal to the result of invoking ((Character) value).hashCode().
hashCode(double) - Static method in class dev.mccue.guava.primitives.Doubles
Returns a hash code for value; equal to the result of invoking ((Double) value).hashCode().
hashCode(float) - Static method in class dev.mccue.guava.primitives.Floats
Returns a hash code for value; equal to the result of invoking ((Float) value).hashCode().
hashCode(int) - Static method in class dev.mccue.guava.primitives.Ints
Returns a hash code for value; equal to the result of invoking ((Integer) value).hashCode().
hashCode(long) - Static method in class dev.mccue.guava.primitives.Longs
Returns a hash code for value; equal to the result of invoking ((Long) value).hashCode().
hashCode(short) - Static method in class dev.mccue.guava.primitives.Shorts
Returns a hash code for value; equal to the result of invoking ((Short) value).hashCode().

I

ImmutableDoubleArray - Class in dev.mccue.guava.primitives
An immutable array of double values, with an API resembling List.
ImmutableDoubleArray.Builder - Class in dev.mccue.guava.primitives
A builder for ImmutableDoubleArray instances; obtained using ImmutableDoubleArray.builder(int).
ImmutableIntArray - Class in dev.mccue.guava.primitives
An immutable array of int values, with an API resembling List.
ImmutableIntArray.Builder - Class in dev.mccue.guava.primitives
A builder for ImmutableIntArray instances; obtained using ImmutableIntArray.builder(int).
ImmutableLongArray - Class in dev.mccue.guava.primitives
An immutable array of long values, with an API resembling List.
ImmutableLongArray.Builder - Class in dev.mccue.guava.primitives
A builder for ImmutableLongArray instances; obtained using ImmutableLongArray.builder(int).
indexOf(boolean[], boolean) - Static method in class dev.mccue.guava.primitives.Booleans
Returns the index of the first appearance of the value target in array.
indexOf(boolean[], boolean[]) - Static method in class dev.mccue.guava.primitives.Booleans
Returns the start position of the first occurrence of the specified target within array, or -1 if there is no such occurrence.
indexOf(byte[], byte) - Static method in class dev.mccue.guava.primitives.Bytes
Returns the index of the first appearance of the value target in array.
indexOf(byte[], byte[]) - Static method in class dev.mccue.guava.primitives.Bytes
Returns the start position of the first occurrence of the specified target within array, or -1 if there is no such occurrence.
indexOf(char[], char) - Static method in class dev.mccue.guava.primitives.Chars
Returns the index of the first appearance of the value target in array.
indexOf(char[], char[]) - Static method in class dev.mccue.guava.primitives.Chars
Returns the start position of the first occurrence of the specified target within array, or -1 if there is no such occurrence.
indexOf(double) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns the smallest index for which ImmutableDoubleArray.get(int) returns target, or -1 if no such index exists.
indexOf(double[], double) - Static method in class dev.mccue.guava.primitives.Doubles
Returns the index of the first appearance of the value target in array.
indexOf(double[], double[]) - Static method in class dev.mccue.guava.primitives.Doubles
Returns the start position of the first occurrence of the specified target within array, or -1 if there is no such occurrence.
indexOf(float[], float) - Static method in class dev.mccue.guava.primitives.Floats
Returns the index of the first appearance of the value target in array.
indexOf(float[], float[]) - Static method in class dev.mccue.guava.primitives.Floats
Returns the start position of the first occurrence of the specified target within array, or -1 if there is no such occurrence.
indexOf(int) - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns the smallest index for which ImmutableIntArray.get(int) returns target, or -1 if no such index exists.
indexOf(int[], int) - Static method in class dev.mccue.guava.primitives.Ints
Returns the index of the first appearance of the value target in array.
indexOf(int[], int[]) - Static method in class dev.mccue.guava.primitives.Ints
Returns the start position of the first occurrence of the specified target within array, or -1 if there is no such occurrence.
indexOf(long) - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns the smallest index for which ImmutableLongArray.get(int) returns target, or -1 if no such index exists.
indexOf(long[], long) - Static method in class dev.mccue.guava.primitives.Longs
Returns the index of the first appearance of the value target in array.
indexOf(long[], long[]) - Static method in class dev.mccue.guava.primitives.Longs
Returns the start position of the first occurrence of the specified target within array, or -1 if there is no such occurrence.
indexOf(short[], short) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the index of the first appearance of the value target in array.
indexOf(short[], short[]) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the start position of the first occurrence of the specified target within array, or -1 if there is no such occurrence.
Ints - Class in dev.mccue.guava.primitives
Static utility methods pertaining to int primitives, that are not already found in either Integer or Arrays.
intValue() - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the value of this UnsignedInteger as an int.
intValue() - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the value of this UnsignedLong as an int.
isEmpty() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns true if there are no values in this array (ImmutableDoubleArray.length() is zero).
isEmpty() - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns true if there are no values in this array (ImmutableIntArray.length() is zero).
isEmpty() - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns true if there are no values in this array (ImmutableLongArray.length() is zero).
isFinite(double) - Static method in class dev.mccue.guava.primitives.Doubles
Returns true if value represents a real number.
isFinite(float) - Static method in class dev.mccue.guava.primitives.Floats
Returns true if value represents a real number.
isWrapperType(Class<?>) - Static method in class dev.mccue.guava.primitives.Primitives
Returns true if type is one of the nine primitive-wrapper types, such as Integer.

J

join(String, boolean...) - Static method in class dev.mccue.guava.primitives.Booleans
Returns a string containing the supplied boolean values separated by separator.
join(String, byte...) - Static method in class dev.mccue.guava.primitives.SignedBytes
Returns a string containing the supplied byte values separated by separator.
join(String, byte...) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns a string containing the supplied byte values separated by separator.
join(String, char...) - Static method in class dev.mccue.guava.primitives.Chars
Returns a string containing the supplied char values separated by separator.
join(String, double...) - Static method in class dev.mccue.guava.primitives.Doubles
Returns a string containing the supplied double values, converted to strings as specified by Double.toString(double), and separated by separator.
join(String, float...) - Static method in class dev.mccue.guava.primitives.Floats
Returns a string containing the supplied float values, converted to strings as specified by Float.toString(float), and separated by separator.
join(String, int...) - Static method in class dev.mccue.guava.primitives.Ints
Returns a string containing the supplied int values separated by separator.
join(String, int...) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns a string containing the supplied unsigned int values separated by separator.
join(String, long...) - Static method in class dev.mccue.guava.primitives.Longs
Returns a string containing the supplied long values separated by separator.
join(String, long...) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns a string containing the supplied unsigned long values separated by separator.
join(String, short...) - Static method in class dev.mccue.guava.primitives.Shorts
Returns a string containing the supplied short values separated by separator.

L

lastIndexOf(boolean[], boolean) - Static method in class dev.mccue.guava.primitives.Booleans
Returns the index of the last appearance of the value target in array.
lastIndexOf(byte[], byte) - Static method in class dev.mccue.guava.primitives.Bytes
Returns the index of the last appearance of the value target in array.
lastIndexOf(char[], char) - Static method in class dev.mccue.guava.primitives.Chars
Returns the index of the last appearance of the value target in array.
lastIndexOf(double) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns the largest index for which ImmutableDoubleArray.get(int) returns target, or -1 if no such index exists.
lastIndexOf(double[], double) - Static method in class dev.mccue.guava.primitives.Doubles
Returns the index of the last appearance of the value target in array.
lastIndexOf(float[], float) - Static method in class dev.mccue.guava.primitives.Floats
Returns the index of the last appearance of the value target in array.
lastIndexOf(int) - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns the largest index for which ImmutableIntArray.get(int) returns target, or -1 if no such index exists.
lastIndexOf(int[], int) - Static method in class dev.mccue.guava.primitives.Ints
Returns the index of the last appearance of the value target in array.
lastIndexOf(long) - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns the largest index for which ImmutableLongArray.get(int) returns target, or -1 if no such index exists.
lastIndexOf(long[], long) - Static method in class dev.mccue.guava.primitives.Longs
Returns the index of the last appearance of the value target in array.
lastIndexOf(short[], short) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the index of the last appearance of the value target in array.
length() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns the number of values in this array.
length() - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns the number of values in this array.
length() - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns the number of values in this array.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.Booleans
Returns a comparator that compares two boolean arrays lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.Chars
Returns a comparator that compares two char arrays lexicographically; not advisable for sorting user-visible strings as the ordering may not match the conventions of the user's locale.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.Doubles
Returns a comparator that compares two double arrays lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.Floats
Returns a comparator that compares two float arrays lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.Ints
Returns a comparator that compares two int arrays lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.Longs
Returns a comparator that compares two long arrays lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.Shorts
Returns a comparator that compares two short arrays lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.SignedBytes
Returns a comparator that compares two byte arrays lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns a comparator that compares two byte arrays lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns a comparator that compares two arrays of unsigned int values lexicographically.
lexicographicalComparator() - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns a comparator that compares two arrays of unsigned long values lexicographically.
Longs - Class in dev.mccue.guava.primitives
Static utility methods pertaining to long primitives, that are not already found in either Long or Arrays.
longValue() - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the value of this UnsignedInteger as a long.
longValue() - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the value of this UnsignedLong as a long.

M

max(byte...) - Static method in class dev.mccue.guava.primitives.SignedBytes
Returns the greatest value present in array.
max(byte...) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns the greatest value present in array, treating values as unsigned.
max(char...) - Static method in class dev.mccue.guava.primitives.Chars
Returns the greatest value present in array.
max(double...) - Static method in class dev.mccue.guava.primitives.Doubles
Returns the greatest value present in array, using the same rules of comparison as Math.max(double, double).
max(float...) - Static method in class dev.mccue.guava.primitives.Floats
Returns the greatest value present in array, using the same rules of comparison as Math.max(float, float).
max(int...) - Static method in class dev.mccue.guava.primitives.Ints
Returns the greatest value present in array.
max(int...) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns the greatest value present in array, treating values as unsigned.
max(long...) - Static method in class dev.mccue.guava.primitives.Longs
Returns the greatest value present in array.
max(long...) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns the greatest value present in array, treating values as unsigned.
max(short...) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the greatest value present in array.
MAX_POWER_OF_TWO - Static variable in class dev.mccue.guava.primitives.Ints
The largest power of two that can be represented as an int.
MAX_POWER_OF_TWO - Static variable in class dev.mccue.guava.primitives.Longs
The largest power of two that can be represented as a long.
MAX_POWER_OF_TWO - Static variable in class dev.mccue.guava.primitives.Shorts
The largest power of two that can be represented as a short.
MAX_POWER_OF_TWO - Static variable in class dev.mccue.guava.primitives.SignedBytes
The largest power of two that can be represented as a signed byte.
MAX_POWER_OF_TWO - Static variable in class dev.mccue.guava.primitives.UnsignedBytes
The largest power of two that can be represented as an unsigned byte.
MAX_VALUE - Static variable in class dev.mccue.guava.primitives.UnsignedBytes
The largest value that fits into an unsigned byte.
MAX_VALUE - Static variable in class dev.mccue.guava.primitives.UnsignedInteger
 
MAX_VALUE - Static variable in class dev.mccue.guava.primitives.UnsignedLong
 
MAX_VALUE - Static variable in class dev.mccue.guava.primitives.UnsignedLongs
 
min(byte...) - Static method in class dev.mccue.guava.primitives.SignedBytes
Returns the least value present in array.
min(byte...) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns the least value present in array, treating values as unsigned.
min(char...) - Static method in class dev.mccue.guava.primitives.Chars
Returns the least value present in array.
min(double...) - Static method in class dev.mccue.guava.primitives.Doubles
Returns the least value present in array, using the same rules of comparison as Math.min(double, double).
min(float...) - Static method in class dev.mccue.guava.primitives.Floats
Returns the least value present in array, using the same rules of comparison as Math.min(float, float).
min(int...) - Static method in class dev.mccue.guava.primitives.Ints
Returns the least value present in array.
min(int...) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns the least value present in array, treating values as unsigned.
min(long...) - Static method in class dev.mccue.guava.primitives.Longs
Returns the least value present in array.
min(long...) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns the least value present in array, treating values as unsigned.
min(short...) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the least value present in array.
minus(UnsignedInteger) - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the result of subtracting this and val.
minus(UnsignedLong) - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the result of subtracting this and val.
mod(UnsignedInteger) - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns this mod val.
mod(UnsignedLong) - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns this modulo val.

O

of() - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns the empty array.
of() - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns the empty array.
of() - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns the empty array.
of(double) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing a single value.
of(double, double) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
of(double, double...) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
of(double, double, double) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
of(double, double, double, double) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
of(double, double, double, double, double) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
of(double, double, double, double, double, double) - Static method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the given values, in order.
of(int) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing a single value.
of(int, int) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
of(int, int...) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
of(int, int, int) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
of(int, int, int, int) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
of(int, int, int, int, int) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
of(int, int, int, int, int, int) - Static method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the given values, in order.
of(long) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing a single value.
of(long, long) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
of(long, long...) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
of(long, long, long) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
of(long, long, long, long) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
of(long, long, long, long, long) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
of(long, long, long, long, long, long) - Static method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the given values, in order.
ONE - Static variable in class dev.mccue.guava.primitives.UnsignedInteger
 
ONE - Static variable in class dev.mccue.guava.primitives.UnsignedLong
 

P

parseUnsignedByte(String) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns the unsigned byte value represented by the given decimal string.
parseUnsignedByte(String, int) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns the unsigned byte value represented by a string with the given radix.
parseUnsignedInt(String) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns the unsigned int value represented by the given decimal string.
parseUnsignedInt(String, int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns the unsigned int value represented by a string with the given radix.
parseUnsignedLong(String) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns the unsigned long value represented by the given decimal string.
parseUnsignedLong(String, int) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns the unsigned long value represented by a string with the given radix.
plus(UnsignedInteger) - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the result of adding this and val.
plus(UnsignedLong) - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the result of adding this and val.
Primitives - Class in dev.mccue.guava.primitives
Contains static utility methods pertaining to primitive types and their corresponding wrapper types.

R

remainder(int, int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns dividend % divisor, where the dividend and divisor are treated as unsigned 32-bit quantities.
remainder(long, long) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns dividend % divisor, where the dividend and divisor are treated as unsigned 64-bit quantities.
reverse(boolean[]) - Static method in class dev.mccue.guava.primitives.Booleans
Reverses the elements of array.
reverse(boolean[], int, int) - Static method in class dev.mccue.guava.primitives.Booleans
Reverses the elements of array between fromIndex inclusive and toIndex exclusive.
reverse(byte[]) - Static method in class dev.mccue.guava.primitives.Bytes
Reverses the elements of array.
reverse(byte[], int, int) - Static method in class dev.mccue.guava.primitives.Bytes
Reverses the elements of array between fromIndex inclusive and toIndex exclusive.
reverse(char[]) - Static method in class dev.mccue.guava.primitives.Chars
Reverses the elements of array.
reverse(char[], int, int) - Static method in class dev.mccue.guava.primitives.Chars
Reverses the elements of array between fromIndex inclusive and toIndex exclusive.
reverse(double[]) - Static method in class dev.mccue.guava.primitives.Doubles
Reverses the elements of array.
reverse(double[], int, int) - Static method in class dev.mccue.guava.primitives.Doubles
Reverses the elements of array between fromIndex inclusive and toIndex exclusive.
reverse(float[]) - Static method in class dev.mccue.guava.primitives.Floats
Reverses the elements of array.
reverse(float[], int, int) - Static method in class dev.mccue.guava.primitives.Floats
Reverses the elements of array between fromIndex inclusive and toIndex exclusive.
reverse(int[]) - Static method in class dev.mccue.guava.primitives.Ints
Reverses the elements of array.
reverse(int[], int, int) - Static method in class dev.mccue.guava.primitives.Ints
Reverses the elements of array between fromIndex inclusive and toIndex exclusive.
reverse(long[]) - Static method in class dev.mccue.guava.primitives.Longs
Reverses the elements of array.
reverse(long[], int, int) - Static method in class dev.mccue.guava.primitives.Longs
Reverses the elements of array between fromIndex inclusive and toIndex exclusive.
reverse(short[]) - Static method in class dev.mccue.guava.primitives.Shorts
Reverses the elements of array.
reverse(short[], int, int) - Static method in class dev.mccue.guava.primitives.Shorts
Reverses the elements of array between fromIndex inclusive and toIndex exclusive.
rotate(boolean[], int) - Static method in class dev.mccue.guava.primitives.Booleans
Performs a right rotation of array of "distance" places, so that the first element is moved to index "distance", and the element at index i ends up at index (distance + i) mod array.length.
rotate(boolean[], int, int, int) - Static method in class dev.mccue.guava.primitives.Booleans
Performs a right rotation of array between fromIndex inclusive and toIndex exclusive.
rotate(byte[], int) - Static method in class dev.mccue.guava.primitives.Bytes
Performs a right rotation of array of "distance" places, so that the first element is moved to index "distance", and the element at index i ends up at index (distance + i) mod array.length.
rotate(byte[], int, int, int) - Static method in class dev.mccue.guava.primitives.Bytes
Performs a right rotation of array between fromIndex inclusive and toIndex exclusive.
rotate(char[], int) - Static method in class dev.mccue.guava.primitives.Chars
Performs a right rotation of array of "distance" places, so that the first element is moved to index "distance", and the element at index i ends up at index (distance + i) mod array.length.
rotate(char[], int, int, int) - Static method in class dev.mccue.guava.primitives.Chars
Performs a right rotation of array between fromIndex inclusive and toIndex exclusive.
rotate(double[], int) - Static method in class dev.mccue.guava.primitives.Doubles
Performs a right rotation of array of "distance" places, so that the first element is moved to index "distance", and the element at index i ends up at index (distance + i) mod array.length.
rotate(double[], int, int, int) - Static method in class dev.mccue.guava.primitives.Doubles
Performs a right rotation of array between fromIndex inclusive and toIndex exclusive.
rotate(float[], int) - Static method in class dev.mccue.guava.primitives.Floats
Performs a right rotation of array of "distance" places, so that the first element is moved to index "distance", and the element at index i ends up at index (distance + i) mod array.length.
rotate(float[], int, int, int) - Static method in class dev.mccue.guava.primitives.Floats
Performs a right rotation of array between fromIndex inclusive and toIndex exclusive.
rotate(int[], int) - Static method in class dev.mccue.guava.primitives.Ints
Performs a right rotation of array of "distance" places, so that the first element is moved to index "distance", and the element at index i ends up at index (distance + i) mod array.length.
rotate(int[], int, int, int) - Static method in class dev.mccue.guava.primitives.Ints
Performs a right rotation of array between fromIndex inclusive and toIndex exclusive.
rotate(long[], int) - Static method in class dev.mccue.guava.primitives.Longs
Performs a right rotation of array of "distance" places, so that the first element is moved to index "distance", and the element at index i ends up at index (distance + i) mod array.length.
rotate(long[], int, int, int) - Static method in class dev.mccue.guava.primitives.Longs
Performs a right rotation of array between fromIndex inclusive and toIndex exclusive.
rotate(short[], int) - Static method in class dev.mccue.guava.primitives.Shorts
Performs a right rotation of array of "distance" places, so that the first element is moved to index "distance", and the element at index i ends up at index (distance + i) mod array.length.
rotate(short[], int, int, int) - Static method in class dev.mccue.guava.primitives.Shorts
Performs a right rotation of array between fromIndex inclusive and toIndex exclusive.

S

saturatedCast(long) - Static method in class dev.mccue.guava.primitives.Chars
Returns the char nearest in value to value.
saturatedCast(long) - Static method in class dev.mccue.guava.primitives.Ints
Returns the int nearest in value to value.
saturatedCast(long) - Static method in class dev.mccue.guava.primitives.Shorts
Returns the short nearest in value to value.
saturatedCast(long) - Static method in class dev.mccue.guava.primitives.SignedBytes
Returns the byte nearest in value to value.
saturatedCast(long) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns the byte value that, when treated as unsigned, is nearest in value to value.
saturatedCast(long) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns the int value that, when treated as unsigned, is nearest in value to value.
Shorts - Class in dev.mccue.guava.primitives
Static utility methods pertaining to short primitives, that are not already found in either Short or Arrays.
SignedBytes - Class in dev.mccue.guava.primitives
Static utility methods pertaining to byte primitives that interpret values as signed.
sort(byte[]) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Sorts the array, treating its elements as unsigned bytes.
sort(byte[], int, int) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Sorts the array between fromIndex inclusive and toIndex exclusive, treating its elements as unsigned bytes.
sort(int[]) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Sorts the array, treating its elements as unsigned 32-bit integers.
sort(int[], int, int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Sorts the array between fromIndex inclusive and toIndex exclusive, treating its elements as unsigned 32-bit integers.
sort(long[]) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Sorts the array, treating its elements as unsigned 64-bit integers.
sort(long[], int, int) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Sorts the array between fromIndex inclusive and toIndex exclusive, treating its elements as unsigned 64-bit integers.
sortDescending(byte[]) - Static method in class dev.mccue.guava.primitives.SignedBytes
Sorts the elements of array in descending order.
sortDescending(byte[]) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Sorts the elements of array in descending order, interpreting them as unsigned 8-bit integers.
sortDescending(byte[], int, int) - Static method in class dev.mccue.guava.primitives.SignedBytes
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order.
sortDescending(byte[], int, int) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order, interpreting them as unsigned 8-bit integers.
sortDescending(char[]) - Static method in class dev.mccue.guava.primitives.Chars
Sorts the elements of array in descending order.
sortDescending(char[], int, int) - Static method in class dev.mccue.guava.primitives.Chars
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order.
sortDescending(double[]) - Static method in class dev.mccue.guava.primitives.Doubles
Sorts the elements of array in descending order.
sortDescending(double[], int, int) - Static method in class dev.mccue.guava.primitives.Doubles
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order.
sortDescending(float[]) - Static method in class dev.mccue.guava.primitives.Floats
Sorts the elements of array in descending order.
sortDescending(float[], int, int) - Static method in class dev.mccue.guava.primitives.Floats
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order.
sortDescending(int[]) - Static method in class dev.mccue.guava.primitives.Ints
Sorts the elements of array in descending order.
sortDescending(int[]) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Sorts the elements of array in descending order, interpreting them as unsigned 32-bit integers.
sortDescending(int[], int, int) - Static method in class dev.mccue.guava.primitives.Ints
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order.
sortDescending(int[], int, int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order, interpreting them as unsigned 32-bit integers.
sortDescending(long[]) - Static method in class dev.mccue.guava.primitives.Longs
Sorts the elements of array in descending order.
sortDescending(long[]) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Sorts the elements of array in descending order, interpreting them as unsigned 64-bit integers.
sortDescending(long[], int, int) - Static method in class dev.mccue.guava.primitives.Longs
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order.
sortDescending(long[], int, int) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order, interpreting them as unsigned 64-bit integers.
sortDescending(short[]) - Static method in class dev.mccue.guava.primitives.Shorts
Sorts the elements of array in descending order.
sortDescending(short[], int, int) - Static method in class dev.mccue.guava.primitives.Shorts
Sorts the elements of array between fromIndex inclusive and toIndex exclusive in descending order.
stream() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns a stream over the values in this array, in order.
stream() - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns a stream over the values in this array, in order.
stream() - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns a stream over the values in this array, in order.
stringConverter() - Static method in class dev.mccue.guava.primitives.Doubles
Returns a serializable converter object that converts between strings and doubles using Double.valueOf(java.lang.String) and Double.toString().
stringConverter() - Static method in class dev.mccue.guava.primitives.Floats
Returns a serializable converter object that converts between strings and floats using Float.valueOf(java.lang.String) and Float.toString().
stringConverter() - Static method in class dev.mccue.guava.primitives.Ints
Returns a serializable converter object that converts between strings and integers using Integer.decode(java.lang.String) and Integer.toString().
stringConverter() - Static method in class dev.mccue.guava.primitives.Longs
Returns a serializable converter object that converts between strings and longs using Long.decode(java.lang.String) and Long.toString().
stringConverter() - Static method in class dev.mccue.guava.primitives.Shorts
Returns a serializable converter object that converts between strings and shorts using Short.decode(java.lang.String) and Short.toString().
subArray(int, int) - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns a new immutable array containing the values in the specified range.
subArray(int, int) - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns a new immutable array containing the values in the specified range.
subArray(int, int) - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns a new immutable array containing the values in the specified range.

T

times(UnsignedInteger) - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns the result of multiplying this and val.
times(UnsignedLong) - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns the result of multiplying this and val.
toArray() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns a new, mutable copy of this array's values, as a primitive double[].
toArray() - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns a new, mutable copy of this array's values, as a primitive int[].
toArray() - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns a new, mutable copy of this array's values, as a primitive long[].
toArray(Collection<? extends Number>) - Static method in class dev.mccue.guava.primitives.Bytes
Returns an array containing each value of collection, converted to a byte value in the manner of Number.byteValue().
toArray(Collection<? extends Number>) - Static method in class dev.mccue.guava.primitives.Doubles
Returns an array containing each value of collection, converted to a double value in the manner of Number.doubleValue().
toArray(Collection<? extends Number>) - Static method in class dev.mccue.guava.primitives.Floats
Returns an array containing each value of collection, converted to a float value in the manner of Number.floatValue().
toArray(Collection<? extends Number>) - Static method in class dev.mccue.guava.primitives.Ints
Returns an array containing each value of collection, converted to a int value in the manner of Number.intValue().
toArray(Collection<? extends Number>) - Static method in class dev.mccue.guava.primitives.Longs
Returns an array containing each value of collection, converted to a long value in the manner of Number.longValue().
toArray(Collection<? extends Number>) - Static method in class dev.mccue.guava.primitives.Shorts
Returns an array containing each value of collection, converted to a short value in the manner of Number.shortValue().
toArray(Collection<Boolean>) - Static method in class dev.mccue.guava.primitives.Booleans
Copies a collection of Boolean instances into a new array of primitive boolean values.
toArray(Collection<Character>) - Static method in class dev.mccue.guava.primitives.Chars
Copies a collection of Character instances into a new array of primitive char values.
toByteArray(char) - Static method in class dev.mccue.guava.primitives.Chars
Returns a big-endian representation of value in a 2-element byte array; equivalent to ByteBuffer.allocate(2).putChar(value).array().
toByteArray(int) - Static method in class dev.mccue.guava.primitives.Ints
Returns a big-endian representation of value in a 4-element byte array; equivalent to ByteBuffer.allocate(4).putInt(value).array().
toByteArray(long) - Static method in class dev.mccue.guava.primitives.Longs
Returns a big-endian representation of value in an 8-element byte array; equivalent to ByteBuffer.allocate(8).putLong(value).array().
toByteArray(short) - Static method in class dev.mccue.guava.primitives.Shorts
Returns a big-endian representation of value in a 2-element byte array; equivalent to ByteBuffer.allocate(2).putShort(value).array().
toInt(byte) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns the value of the given byte as an integer, when treated as unsigned.
toLong(int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns the value of the given int as a long, when treated as unsigned.
toString() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns a string representation of this array in the same form as Arrays.toString(double[]), for example "[1, 2, 3]".
toString() - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns a string representation of this array in the same form as Arrays.toString(int[]), for example "[1, 2, 3]".
toString() - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns a string representation of this array in the same form as Arrays.toString(long[]), for example "[1, 2, 3]".
toString() - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns a string representation of the UnsignedInteger value, in base 10.
toString() - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns a string representation of the UnsignedLong value, in base 10.
toString(byte) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns a string representation of x, where x is treated as unsigned.
toString(byte, int) - Static method in class dev.mccue.guava.primitives.UnsignedBytes
Returns a string representation of x for the given radix, where x is treated as unsigned.
toString(int) - Method in class dev.mccue.guava.primitives.UnsignedInteger
Returns a string representation of the UnsignedInteger value, in base radix.
toString(int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns a string representation of x, where x is treated as unsigned.
toString(int) - Method in class dev.mccue.guava.primitives.UnsignedLong
Returns a string representation of the UnsignedLong value, in base radix.
toString(int, int) - Static method in class dev.mccue.guava.primitives.UnsignedInts
Returns a string representation of x for the given radix, where x is treated as unsigned.
toString(long) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns a string representation of x, where x is treated as unsigned.
toString(long, int) - Static method in class dev.mccue.guava.primitives.UnsignedLongs
Returns a string representation of x for the given radix, where x is treated as unsigned.
trimmed() - Method in class dev.mccue.guava.primitives.ImmutableDoubleArray
Returns an immutable array containing the same values as this array.
trimmed() - Method in class dev.mccue.guava.primitives.ImmutableIntArray
Returns an immutable array containing the same values as this array.
trimmed() - Method in class dev.mccue.guava.primitives.ImmutableLongArray
Returns an immutable array containing the same values as this array.
trueFirst() - Static method in class dev.mccue.guava.primitives.Booleans
Returns a Comparator<Boolean> that sorts true before false.
tryParse(String) - Static method in class dev.mccue.guava.primitives.Doubles
Parses the specified string as a double-precision floating point value.
tryParse(String) - Static method in class dev.mccue.guava.primitives.Floats
Parses the specified string as a single-precision floating point value.
tryParse(String) - Static method in class dev.mccue.guava.primitives.Ints
Parses the specified string as a signed decimal integer value.
tryParse(String) - Static method in class dev.mccue.guava.primitives.Longs
Parses the specified string as a signed decimal long value.
tryParse(String, int) - Static method in class dev.mccue.guava.primitives.Ints
Parses the specified string as a signed integer value using the specified radix.
tryParse(String, int) - Static method in class dev.mccue.guava.primitives.Longs
Parses the specified string as a signed long value using the specified radix.

U

UnsignedBytes - Class in dev.mccue.guava.primitives
Static utility methods pertaining to byte primitives that interpret values as unsigned (that is, any negative value b is treated as the positive value 256 + b).
UnsignedInteger - Class in dev.mccue.guava.primitives
A wrapper class for unsigned int values, supporting arithmetic operations.
UnsignedInts - Class in dev.mccue.guava.primitives
Static utility methods pertaining to int primitives that interpret values as unsigned (that is, any negative value x is treated as the positive value 2^32 + x).
UnsignedLong - Class in dev.mccue.guava.primitives
A wrapper class for unsigned long values, supporting arithmetic operations.
UnsignedLongs - Class in dev.mccue.guava.primitives
Static utility methods pertaining to long primitives that interpret values as unsigned (that is, any negative value x is treated as the positive value 2^64 + x).
unwrap(Class<T>) - Static method in class dev.mccue.guava.primitives.Primitives
Returns the corresponding primitive type of type if it is a wrapper type; otherwise returns type itself.

V

valueOf(long) - Static method in class dev.mccue.guava.primitives.UnsignedInteger
Returns an UnsignedInteger that is equal to value, if possible.
valueOf(long) - Static method in class dev.mccue.guava.primitives.UnsignedLong
Returns an UnsignedLong representing the same value as the specified long.
valueOf(String) - Static method in class dev.mccue.guava.primitives.UnsignedInteger
Returns an UnsignedInteger holding the value of the specified String, parsed as an unsigned int value.
valueOf(String) - Static method in class dev.mccue.guava.primitives.UnsignedLong
Returns an UnsignedLong holding the value of the specified String, parsed as an unsigned long value.
valueOf(String, int) - Static method in class dev.mccue.guava.primitives.UnsignedInteger
Returns an UnsignedInteger holding the value of the specified String, parsed as an unsigned int value in the specified radix.
valueOf(String, int) - Static method in class dev.mccue.guava.primitives.UnsignedLong
Returns an UnsignedLong holding the value of the specified String, parsed as an unsigned long value in the specified radix.
valueOf(BigInteger) - Static method in class dev.mccue.guava.primitives.UnsignedInteger
Returns a UnsignedInteger representing the same value as the specified BigInteger.
valueOf(BigInteger) - Static method in class dev.mccue.guava.primitives.UnsignedLong
Returns a UnsignedLong representing the same value as the specified BigInteger.

W

wrap(Class<T>) - Static method in class dev.mccue.guava.primitives.Primitives
Returns the corresponding wrapper type of type if it is a primitive type; otherwise returns type itself.

Z

ZERO - Static variable in class dev.mccue.guava.primitives.UnsignedInteger
 
ZERO - Static variable in class dev.mccue.guava.primitives.UnsignedLong
 
A B C D E F G H I J L M O P R S T U V W Z 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form