
org.testifyproject.jexl3.internal.introspection.MapGetExecutor Maven / Gradle / Ivy
/*
* 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.testifyproject.jexl3.internal.introspection;
import java.util.Map;
/**
* Specialized executor to get a property from a Map.
* @since 2.0
*/
public final class MapGetExecutor extends AbstractExecutor.Get {
/** The java.util.map.get method used as an active marker in MapGet. */
private static final java.lang.reflect.Method MAP_GET =
initMarker(Map.class, "get", Object.class);
/** The property. */
private final Object property;
/**
* Attempts to discover a MapGetExecutor.
*
* @param is the introspector
* @param clazz the class to find the get method from
* @param identifier the key to use as an argument to the get method
* @return the executor if found, null otherwise
*/
public static MapGetExecutor discover(Introspector is, Class> clazz, Object identifier) {
if (Map.class.isAssignableFrom(clazz)) {
return new MapGetExecutor(clazz, MAP_GET, identifier);
} else {
return null;
}
}
/**
* Creates an instance.
* @param clazz he class the get method applies to
* @param method the method held by this executor
* @param key the property to get
*/
private MapGetExecutor(Class> clazz, java.lang.reflect.Method method, Object key) {
super(clazz, method);
property = key;
}
@Override
public Object getTargetProperty() {
return property;
}
@Override
public Object invoke(final Object obj) {
@SuppressWarnings("unchecked") // ctor only allows Map instances - see discover() method
final Map
© 2015 - 2025 Weber Informatics LLC | Privacy Policy