All Products
Search
Document Center

Mobile Platform as a Service:CCardType

Last Updated:Nov 21, 2025

Introduction

Specifies the source types for card templates.

Enumeration

/**
 * The source types for card templates.
 */
public enum CCardType {
    // Invalid card template.
    C_CARD_TYPE_NONE,   
    // Template in memory.
    C_CARD_TYPE_CACHE,  
    // Template in a local resource bundle.
    C_CARD_TYPE_BUNDLE, 
    // Template on a local SD card.
    C_CARD_TYPE_FILE,   
    // Cloud template.
    C_CARD_TYPE_CLOUD   
}