Package gnu.trove.impl
Class Constants
- java.lang.Object
-
- gnu.trove.impl.Constants
-
public class Constants extends java.lang.ObjectCentral location for constants needed by various implementations.
-
-
Field Summary
Fields Modifier and Type Field Description static byteDEFAULT_BYTE_NO_ENTRY_VALUEthe default value that represents for byte types.static intDEFAULT_CAPACITYthe default capacity for new collectionsstatic charDEFAULT_CHAR_NO_ENTRY_VALUEthe default value that represents for char types.static doubleDEFAULT_DOUBLE_NO_ENTRY_VALUEthe default value that represents for double types.static floatDEFAULT_FLOAT_NO_ENTRY_VALUEthe default value that represents for float types.static intDEFAULT_INT_NO_ENTRY_VALUEthe default value that represents for int types.static floatDEFAULT_LOAD_FACTORthe load above which rehashing occurs.static longDEFAULT_LONG_NO_ENTRY_VALUEthe default value that represents for long types.static shortDEFAULT_SHORT_NO_ENTRY_VALUEthe default value that represents for short types.
-
Constructor Summary
Constructors Constructor Description Constants()
-
-
-
Field Detail
-
DEFAULT_CAPACITY
public static final int DEFAULT_CAPACITY
the default capacity for new collections- See Also:
- Constant Field Values
-
DEFAULT_LOAD_FACTOR
public static final float DEFAULT_LOAD_FACTOR
the load above which rehashing occurs.- See Also:
- Constant Field Values
-
DEFAULT_BYTE_NO_ENTRY_VALUE
public static final byte DEFAULT_BYTE_NO_ENTRY_VALUE
the default value that represents for byte types.
-
DEFAULT_SHORT_NO_ENTRY_VALUE
public static final short DEFAULT_SHORT_NO_ENTRY_VALUE
the default value that represents for short types.
-
DEFAULT_CHAR_NO_ENTRY_VALUE
public static final char DEFAULT_CHAR_NO_ENTRY_VALUE
the default value that represents for char types.
-
DEFAULT_INT_NO_ENTRY_VALUE
public static final int DEFAULT_INT_NO_ENTRY_VALUE
the default value that represents for int types.
-
DEFAULT_LONG_NO_ENTRY_VALUE
public static final long DEFAULT_LONG_NO_ENTRY_VALUE
the default value that represents for long types.
-
DEFAULT_FLOAT_NO_ENTRY_VALUE
public static final float DEFAULT_FLOAT_NO_ENTRY_VALUE
the default value that represents for float types.
-
DEFAULT_DOUBLE_NO_ENTRY_VALUE
public static final double DEFAULT_DOUBLE_NO_ENTRY_VALUE
the default value that represents for double types.
-
-