Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
package com.example.datatest.Data;
public final class CrimeContract
{
public static final String TABLE_NAME = "crime";
public static final String COLUMN_ID = "_id";
public static final String COLUMN_CRIME_TYPE = "crime_type";
public static final String COLUMN_DAY ="day";
public static final String COLUMN_MONTH = "month";
public static final String COLUMN_YEAR = "year";
public static final String COLUMN_ROAD = "road";
public static final String COLUMN_LONGITUDE = "longitude";
public static final String COLUMN_LATITUDE = "latitude";
public static final String COLUMN_REPORTED_BY = "reported_by";
}