Back to project page sqlite-provider.
The source code is released under:
Apache License
If you think the Android project sqlite-provider listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.novoda.sqliteprovider.demo.provider; /* w w w. ja v a 2s.c om*/ public final class FireworkUriConstants { private FireworkUriConstants() { } public static final String VIEW_ALL_SEARCH = FireworkProvider.AUTHORITY + "firework"; public static final String ADD_FIREWORK = FireworkProvider.AUTHORITY + "firework (with ContentValues)"; public static final String PRIMARY_KEY_SEARCH = FireworkProvider.AUTHORITY + "firework/1"; public static final String ONE_TO_MANY_SEARCH = FireworkProvider.AUTHORITY + "shop/1/firework"; public static final String GROUP_BY_SEARCH = FireworkProvider.AUTHORITY + "firework?groupBy=shop_id&having=SUM(price)>40"; public static final String LIMIT_3 = FireworkProvider.AUTHORITY + "firework?limit=3"; public static final String UNIQUE_SEARCH = FireworkProvider.AUTHORITY + "firework?distinct=true"; }