Here you can find the source of as(Object value, Class
Parameter | Description |
---|---|
value | the value to cast |
type | the class of the type expected for the value |
T | the type of the value |
public static <T> T as(Object value, Class<T> type)
//package com.java2s; /*//w w w . ja v a2 s. c o m * Copyright (C) 2014 Bastien Aracil * * 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 { /** * Returns the given value cast to the given type if it is an instance of it, null otherwise * * @param value the value to cast * @param type the class of the type expected for the value * @param <T> the type of the value * @return the value cast to T if castable, null otherwise */ public static <T> T as(Object value, Class<T> type) { if (type.isInstance(value)) { return type.cast(value); } return null; } }