Java Class Load fromString(Class clazz, String name)

Here you can find the source of fromString(Class clazz, String name)

Description

from String

License

Apache License

Declaration

public static <T extends Enum<T>> T fromString(Class<T> clazz, String name) 

Method Source Code

//package com.java2s;
/**//from  w  w  w  .j a v  a  2  s. c o m
 * Copyright 2011 The Open Source Research Group,
 *                University of Erlangen-N?rnberg
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    public static <T extends Enum<T>> T fromString(Class<T> clazz, String name) {
        try {
            return Enum.valueOf(clazz, name);
        } catch (IllegalArgumentException e) {
            return null;
        }
    }
}

Related

  1. classForName(String typeName)
  2. classForNameNoThrow(String className)
  3. classForNameOrNull(final String className)
  4. classForNameOrPrimitive(String name, ClassLoader loader)
  5. fromString(Class clazz, String stringValue)
  6. fromString(Class clz, String value, T defaultVal)
  7. fromString(Class enumClass, String s, T defaultValue)
  8. fromString(Class enumType, String text)
  9. fromString(final Class clazz, final String value)