Interface DbBooleanArray
- All Superinterfaces:
DbArrayBase
,LongSizedDataStructure
,Serializable
,ToStringWithElements
- All Known Implementing Classes:
DbBooleanArray.Indirect
,DbBooleanArrayDirect
,DbBooleanArraySlice
,DbSubBooleanArray
@Deprecated public interface DbBooleanArray extends DbArrayBase
Deprecated.
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
DbBooleanArray.Indirect
Deprecated.Base class for all "indirect" DbBooleanArray implementations. -
Field Summary
Fields inherited from interface com.illumon.iris.db.tables.dbarrays.DbArrayBase
NULL_ELEMENT_STRING, serialVersionUID
Fields inherited from interface com.illumon.iris.gui.table.format.ToStringWithElements
ARRAY_SIZE_WARNING, DEFAULT_ARRAY_SIZE_COPY, MAX_ARRAY_SIZE_COPY
-
Method Summary
Modifier and Type Method Description static boolean
equals(DbBooleanArray aArray, Object b)
Deprecated.Helper method for implementingObject.equals(Object)
.default void
fillChunk(WritableChunk destChunk)
Deprecated.Boolean
get(long i)
Deprecated.default Class
getComponentType()
Deprecated.DbBooleanArrayDirect
getDirect()
Deprecated.Return a version of this DbArrayBase that is flattened out to only reference memory.static int
hashCode(DbBooleanArray array)
Deprecated.Helper method for implementingObject.hashCode()
.DbBooleanArray
subArray(long fromIndex, long toIndex)
Deprecated.DbBooleanArray
subArrayByPositions(long[] positions)
Deprecated.Boolean[]
toArray()
Deprecated.default Chunk<Attributes.Values>
toChunk()
Deprecated.DbArray
toDbArray()
Deprecated.static String
toString(DbBooleanArray array)
Deprecated.Helper method for implementingObject.toString()
.Methods inherited from interface com.illumon.iris.db.util.LongSizedDataStructure
intSize, intSize, size
-
Method Details
-
get
Deprecated. -
subArray
Deprecated.- Specified by:
subArray
in interfaceDbArrayBase
-
subArrayByPositions
Deprecated.- Specified by:
subArrayByPositions
in interfaceDbArrayBase
-
toArray
Boolean[] toArray()Deprecated.- Specified by:
toArray
in interfaceDbArrayBase
-
toDbArray
DbArray toDbArray()Deprecated.- Specified by:
toDbArray
in interfaceDbArrayBase
-
getComponentType
Deprecated.- Specified by:
getComponentType
in interfaceDbArrayBase
-
getDirect
DbBooleanArrayDirect getDirect()Deprecated.Return a version of this DbArrayBase that is flattened out to only reference memory.- Specified by:
getDirect
in interfaceDbArrayBase
-
toChunk
Deprecated.- Specified by:
toChunk
in interfaceDbArrayBase
-
fillChunk
Deprecated.- Specified by:
fillChunk
in interfaceDbArrayBase
-
toString
Deprecated.Helper method for implementingObject.toString()
.- Parameters:
array
- The DbBooleanArray to convert to a String- Returns:
- The String representation of array
-
equals
Deprecated.Helper method for implementingObject.equals(Object)
.- Parameters:
aArray
- The LHS of the equality test (always a DbBooleanArray)b
- The RHS of the equality test- Returns:
- Whether the two inputs are equal
-
hashCode
Deprecated.Helper method for implementingObject.hashCode()
. Follows the pattern inArrays.hashCode(Object[])
.- Parameters:
array
- The DbBooleanArray to hash- Returns:
- The hash code
-