19 lines
588 B
Java
19 lines
588 B
Java
package dev.ukanth.ufirewall.preferences;
|
|
|
|
/**
|
|
* Created by ukanth on 19/7/16.
|
|
*/
|
|
public class ShareContract {
|
|
|
|
public static final String COLUMN_KEY = "key";
|
|
public static final String COLUMN_TYPE = "type";
|
|
public static final String COLUMN_VALUE = "value";
|
|
|
|
public static final int TYPE_NULL = 0;
|
|
public static final int TYPE_STRING = 1;
|
|
public static final int TYPE_STRING_SET = 2;
|
|
public static final int TYPE_INT = 3;
|
|
public static final int TYPE_LONG = 4;
|
|
public static final int TYPE_FLOAT = 5;
|
|
public static final int TYPE_BOOLEAN = 6;
|
|
}
|