blob: 84f5844e29b17689a1acc117740e77e89fdf2e74 [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.arch.persistence.room;
import android.support.annotation.IntDef;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Allows specific customization about the column associated with this field.
* <p>
* For example, you can specify a column name for the field or change the column's type affinity.
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.CLASS)
public @interface ColumnInfo {
/**
* Name of the column in the database. Defaults to the field name if not set.
* @return Name of the column in the database.
*/
String name() default INHERIT_FIELD_NAME;
/**
* The type affinity for the column, which will be used when constructing the database.
* <p>
* If it is not specified, Room resolves it based on the field's type and available
* TypeConverters.
* <p>
* See <a href="https://www.sqlite.org/datatype3.html">SQLite types documentation</a> for
* details.
*
* @return The type affinity of the column.
*/
@SuppressWarnings("unused") @SQLiteTypeAffinity int typeAffinity() default UNDEFINED;
/**
* Convenience method to index the field.
* <p>
* If you would like to create a composite index instead, see: {@link Index}.
*
* @return True if this field should be indexed, false otherwise. Defaults to false.
*/
boolean index() default false;
/**
* Constant to let Room inherit the field name as the column name. If used, Room will use the
* field name as the column name.
*/
String INHERIT_FIELD_NAME = "[field-name]";
/**
* Undefined type affinity. Will be resolved based on the type.
*/
int UNDEFINED = 1;
/**
* Column affinity constant for strings.
*/
int TEXT = 2;
/**
* Column affinity constant for integers or booleans.
*/
int INTEGER = 3;
/**
* Column affinity constant for floats or doubles.
*/
int REAL = 4;
/**
* Column affinity constant for binary data.
*/
int BLOB = 5;
/**
* The SQLite column type constants that can be used in {@link #typeAffinity()}
*/
@IntDef({UNDEFINED, TEXT, INTEGER, REAL, BLOB})
@interface SQLiteTypeAffinity {
}
}