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 classDbBooleanArray.IndirectDeprecated.Base class for all "indirect" DbBooleanArray implementations. -
Field Summary
Fields inherited from interface com.illumon.iris.db.tables.dbarrays.DbArrayBase
NULL_ELEMENT_STRING, serialVersionUIDFields 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 booleanequals(DbBooleanArray aArray, Object b)Deprecated.Helper method for implementingObject.equals(Object).default voidfillChunk(WritableChunk destChunk)Deprecated.Booleanget(long i)Deprecated.default ClassgetComponentType()Deprecated.DbBooleanArrayDirectgetDirect()Deprecated.Return a version of this DbArrayBase that is flattened out to only reference memory.static inthashCode(DbBooleanArray array)Deprecated.Helper method for implementingObject.hashCode().DbBooleanArraysubArray(long fromIndex, long toIndex)Deprecated.DbBooleanArraysubArrayByPositions(long[] positions)Deprecated.Boolean[]toArray()Deprecated.default Chunk<Attributes.Values>toChunk()Deprecated.DbArraytoDbArray()Deprecated.static StringtoString(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:
subArrayin interfaceDbArrayBase
-
subArrayByPositions
Deprecated.- Specified by:
subArrayByPositionsin interfaceDbArrayBase
-
toArray
Boolean[] toArray()Deprecated.- Specified by:
toArrayin interfaceDbArrayBase
-
toDbArray
DbArray toDbArray()Deprecated.- Specified by:
toDbArrayin interfaceDbArrayBase
-
getComponentType
Deprecated.- Specified by:
getComponentTypein interfaceDbArrayBase
-
getDirect
DbBooleanArrayDirect getDirect()Deprecated.Return a version of this DbArrayBase that is flattened out to only reference memory.- Specified by:
getDirectin interfaceDbArrayBase
-
toChunk
Deprecated.- Specified by:
toChunkin interfaceDbArrayBase
-
fillChunk
Deprecated.- Specified by:
fillChunkin 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
-