/* * Copyright (c) 2012 Diamond Light Source Ltd. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package uk.ac.diamond.scisoft.analysis.rpc.staticdispatchertypes; public class SingleArgumentBoxedPrimitiveArrays { public static Class<Boolean[]> call(Boolean[] param) { return Boolean[].class; } public static Class<Byte[]> call(Byte[] param) { return Byte[].class; } public static Class<Character[]> call(Character[] param) { return Character[].class; } public static Class<Double[]> call(Double[] param) { return Double[].class; } public static Class<Float[]> call(Float[] param) { return Float[].class; } public static Class<Integer[]> call(Integer[] param) { return Integer[].class; } public static Class<Long[]> call(Long[] param) { return Long[].class; } public static Class<Short[]> call(Short[] param) { return Short[].class; } }