CCardType

Updated at:

Introduction

Defines 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   
}