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.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.text.TextUtils;

public class Main {
    @Nullable
    @SuppressWarnings("unchecked")
    public static <T> Class<? extends T> classForName(@NonNull String className, boolean allowEmptyName) {
        if (allowEmptyName && TextUtils.isEmpty(className)) {
            return null;
        }

        try {
            return (Class<? extends T>) Class.forName(className);
        } catch (Exception e) {
            throw new RuntimeException(
                    "An exception occurred while finding class for name " + className + ". " + e.getMessage());
        }
    }
}