Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.util.SparseArray;

public class Main {
    private static final SparseArray<String> sKnownPhoneTypesMap_ItoS = new SparseArray();

    public static String getPhoneTypeString(Integer paramInteger) {
        return (String) sKnownPhoneTypesMap_ItoS.get(paramInteger.intValue());
    }
}