Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.widget.AdapterView;

public class Main {
    public static <T> T selectedValue(T[] values, long index) {
        T result = null;
        if (index != AdapterView.INVALID_ROW_ID) {
            result = values[(int) index];
        }
        return result;
    }

    public static Integer selectedValue(int[] values, long index) {
        Integer result = null;
        if (index != AdapterView.INVALID_ROW_ID) {
            result = values[(int) index];
        }
        return result;
    }
}