Java Thread Callable getRandomValueForPrimitive(Class type)

Here you can find the source of getRandomValueForPrimitive(Class type)

Description

get Random Value For Primitive

License

Open Source License

Declaration

public static Object getRandomValueForPrimitive(Class<?> type) 

Method Source Code

//package com.java2s;
/*/*from   w  w w .  j  a v a 2 s  . c  o  m*/
 * Copyright (C) 2002, 2004 Takao Nakaguchi.
 *
 * This is a program for Language Grid Core Node. This combines multiple language resources and provides composite language services.
 * Copyright (C) 2005-2008 NICT Language Grid Project.
 * Copyright (C) 2014 Language Grid Project.
 *
 * This program is free software: you can redistribute it and/or modify it 
 * under the terms of the GNU Lesser General Public License as published by 
 * the Free Software Foundation, either version 2.1 of the License, or (at 
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser 
 * General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License 
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.HashMap;

import java.util.Map;

import java.util.concurrent.Callable;

public class Main {
    private static Map<Class<?>, Callable<Object>> p2r = new HashMap<Class<?>, Callable<Object>>();

    public static Object getRandomValueForPrimitive(Class<?> type) {
        Callable<Object> c = p2r.get(type);
        if (c == null)
            return null;
        try {
            return c.call();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

Related

  1. executeUntilNonNullOrTimeout(final long timeoutMs, final long timeBetweenPollsMs, final Callable callable)
  2. executeWithClassLoader(ClassLoader classLoader, Callable callable)
  3. expectException(Callable callable, Class exception)
  4. getBytes(final String string)
  5. getFuture(ExecutorService executorService, Callable callable)
  6. invokeAll(Collection> tasks, ExecutorService executorService)
  7. invokeBulkActions(Collection> tasks)
  8. max(final double[] a, final double[] b)
  9. minScalar(final double[] a, final double scalar)