alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Android example source code file (SyncConstValue.java)

This example Android source code file (SyncConstValue.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Android by Example" TM.

Java - Android tags/keywords

non_syncable_account, non_syncable_account_type, string, syncconstvalue

The SyncConstValue.java Android example source code

/*
 * Copyright (C) 2006 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.provider;

/**
 * Columns for tables that are synced to a server.
 * @deprecated
 * @hide
 */
public interface SyncConstValue
{
    /**
     * The account that was used to sync the entry to the device.
     * <P>Type: TEXT

*/ public static final String _SYNC_ACCOUNT = "_sync_account"; /** * The type of the account that was used to sync the entry to the device. * <P>Type: TEXT

*/ public static final String _SYNC_ACCOUNT_TYPE = "_sync_account_type"; /** * The unique ID for a row assigned by the sync source. NULL if the row has never been synced. * <P>Type: TEXT

*/ public static final String _SYNC_ID = "_sync_id"; /** * The last time, from the sync source's point of view, that this row has been synchronized. * <P>Type: INTEGER (long)

*/ public static final String _SYNC_TIME = "_sync_time"; /** * The version of the row, as assigned by the server. * <P>Type: TEXT

*/ public static final String _SYNC_VERSION = "_sync_version"; /** * Used in temporary provider while syncing, always NULL for rows in persistent providers. * <P>Type: INTEGER (long)

*/ public static final String _SYNC_LOCAL_ID = "_sync_local_id"; /** * Used only in persistent providers, and only during merging. * <P>Type: INTEGER (long)

*/ public static final String _SYNC_MARK = "_sync_mark"; /** * Used to indicate that local, unsynced, changes are present. * <P>Type: INTEGER (long)

*/ public static final String _SYNC_DIRTY = "_sync_dirty"; /** * Used to indicate that this account is not synced */ public static final String NON_SYNCABLE_ACCOUNT = "non_syncable"; /** * Used to indicate that this account is not synced */ public static final String NON_SYNCABLE_ACCOUNT_TYPE = "android.local"; }

Other Android examples (source code examples)

Here is a short list of links related to this Android SyncConstValue.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.