blob: 854591a774c6fb89d216725f00d3528295ae1ab7 [file] [log] [blame]
/*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*******************************************************************************/
package org.apache.ofbiz.base.util;
import java.util.Collection;
import java.util.Map;
public final class UtilGenerics {
private static final String MODULE = UtilMisc.class.getName();
private UtilGenerics() { }
@SuppressWarnings("unchecked")
public static <V> V cast(Object object) {
return (V) object;
}
public static <E, C extends Collection<E>> C checkCollection(Object object, Class<E> type) {
if (object != null) {
if (!(Collection.class.isInstance(object))) {
throw new ClassCastException("Not a " + Collection.class.getName());
}
int i = 0;
for (Object value: (Collection<?>) object) {
if (value != null && !type.isInstance(value)) {
throw new IllegalArgumentException("Value(" + i + "), with value(" + value + ") is not a " + type.getName());
}
i++;
}
}
return cast(object);
}
public static <K, V> Map<K, V> checkMap(Object object, Class<K> keyType, Class<V> valueType) {
if (object != null) {
if (!(object instanceof Map<?, ?>)) {
throw new ClassCastException("Not a map");
}
Map<?, ?> map = (Map<?, ?>) object;
int i = 0;
for (Map.Entry<?, ?> entry: map.entrySet()) {
if (entry.getKey() != null && !keyType.isInstance(entry.getKey())) {
throw new IllegalArgumentException("Key(" + i + "), with value(" + entry.getKey() + ") is not a " + keyType);
}
if (entry.getValue() != null && !valueType.isInstance(entry.getValue())) {
throw new IllegalArgumentException("Value(" + i + "), with value(" + entry.getValue() + ") is not a " + valueType);
}
i++;
}
}
return cast(object);
}
}