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 java.util.Set;
import android.os.Bundle;

public class Main {
    public static String getStringByCaseInsensitive(Bundle bundle, String key) {
        Set<String> keys = bundle.keySet();
        String lower = key.toLowerCase();
        for (String k : keys) {
            if (k.toLowerCase().equals(lower))
                return bundle.getString(k);
        }

        return null;
    }
}