Example usage for android.os Parcelable interface-usage

List of usage examples for android.os Parcelable interface-usage

Introduction

In this page you can find the example usage for android.os Parcelable interface-usage.

Usage

From source file com.clover.sdk.v3.payments.PaymentResponse.java

@SuppressWarnings("all")
public final class PaymentResponse
        implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable {

    public java.lang.Boolean getRequestSuccessful() {
        return genClient.cacheGet(CacheKey.requestSuccessful);

From source file com.clover.sdk.v3.customers.EmailAddress.java

@SuppressWarnings("all")
public final class EmailAddress
        implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable {

    public java.lang.String getId() {
        return genClient.cacheGet(CacheKey.id);

From source file tv.ouya.console.api.store.StoreSection.java

public class StoreSection implements Parcelable {
    public StoreSection() {
    }

    public static enum Type {
        TAG, LIST;

From source file com.clover.sdk.v3.payments.ServiceChargeAmount.java

@SuppressWarnings("all")
public final class ServiceChargeAmount
        implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable {

    public java.lang.String getId() {
        return genClient.cacheGet(CacheKey.id);

From source file com.clover.sdk.v3.payments.BatchCardTotal.java

@SuppressWarnings("all")
public final class BatchCardTotal
        implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable {

    public com.clover.sdk.v3.payments.CardType getCardType() {
        return genClient.cacheGet(CacheKey.cardType);

From source file se.leap.bitmaskclient.Provider.java

/**
 * @author Sean Leonard <meanderingcode@aetherislands.net>
 * @author Parmnides GV <parmegv@sdf.org>
 */
public final class Provider implements Parcelable {

From source file com.tigerpenguin.places.model.Photo.java

public class Photo extends JsonModel implements Parcelable {

    private static final int MAX_RESOLUTION = 1600;
    private static final String BASE_URL = "https://maps.googleapis.com/maps/api/place/photo?";
    private static final String PARAM_API_KEY = "key=";
    private static final String PARAM_PHOTO_REFERENCE = "&photoreference=";

From source file no.ntnu.osnap.social.models.Model.java

/**
 * oSNAP generic class for all social objects.
 *
 * @author Emanuele 'lemrey' Di Santo
 */
public class Model implements Iterable, Parcelable {

From source file tv.ouya.console.api.Product.java

public class Product implements Parcelable {
    public static final int CURRENT_PRODUCT_VERSION = -1;
    public static final int INITIAL_PRODUCT_VERSION = -1;
    public static final Parcelable.Creator<Product> CREATOR = null;

    public Product() {

From source file com.sayar.requests.auth.HttpBasicAuthentication.java

/**
 * This class represents HttpBasic authentication.
 * 
 * @author ramisayar
 * 
 */