All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rocksdb.ColumnFamilyDescriptor Maven / Gradle / Ivy

Go to download

RocksDB fat jar that contains .so files for linux32 and linux64 (glibc and musl-libc), jnilib files for Mac OSX, and a .dll for Windows x64.

The newest version!
// Copyright (c) 2011-present, Facebook, Inc.  All rights reserved.
//  This source code is licensed under both the GPLv2 (found in the
//  COPYING file in the root directory) and Apache 2.0 License
//  (found in the LICENSE.Apache file in the root directory).

package org.rocksdb;

import java.util.Arrays;

/**
 * 

Describes a column family with a * name and respective Options.

*/ public class ColumnFamilyDescriptor { /** *

Creates a new Column Family using a name and default * options,

* * @param columnFamilyName name of column family. * @since 3.10.0 */ public ColumnFamilyDescriptor(final byte[] columnFamilyName) { this(columnFamilyName, new ColumnFamilyOptions()); } /** *

Creates a new Column Family using a name and custom * options.

* * @param columnFamilyName name of column family. * @param columnFamilyOptions options to be used with * column family. * @since 3.10.0 */ public ColumnFamilyDescriptor(final byte[] columnFamilyName, final ColumnFamilyOptions columnFamilyOptions) { columnFamilyName_ = columnFamilyName; columnFamilyOptions_ = columnFamilyOptions; } /** * Retrieve name of column family. * * @return column family name. * @since 3.10.0 */ public byte[] getName() { return columnFamilyName_; } /** * Retrieve name of column family. * * @return column family name. * @since 3.10.0 * * @deprecated Use {@link #getName()} instead. */ @Deprecated public byte[] columnFamilyName() { return getName(); } /** * Retrieve assigned options instance. * * @return Options instance assigned to this instance. */ public ColumnFamilyOptions getOptions() { return columnFamilyOptions_; } /** * Retrieve assigned options instance. * * @return Options instance assigned to this instance. * * @deprecated Use {@link #getOptions()} instead. */ @Deprecated public ColumnFamilyOptions columnFamilyOptions() { return getOptions(); } @Override public boolean equals(final Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } final ColumnFamilyDescriptor that = (ColumnFamilyDescriptor) o; return Arrays.equals(columnFamilyName_, that.columnFamilyName_) && columnFamilyOptions_.nativeHandle_ == that.columnFamilyOptions_.nativeHandle_; } @Override public int hashCode() { int result = (int) (columnFamilyOptions_.nativeHandle_ ^ (columnFamilyOptions_.nativeHandle_ >>> 32)); result = 31 * result + Arrays.hashCode(columnFamilyName_); return result; } private final byte[] columnFamilyName_; private final ColumnFamilyOptions columnFamilyOptions_; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy