Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.graphics.Color;

public class Main {
    public final static int getCategoryDefaultFG(String category) {
        switch (category) {
        case "boardingPass":
            return Color.BLACK;

        case "eventTicket":
            return Color.BLACK;

        case "coupon":
            return Color.BLACK;

        case "storeCard":
            return Color.BLACK;

        case "generic":
            return Color.BLACK;

        default:
            return Color.BLACK;
        }

    }
}