org.basinmc.plunger.mapping.ClassNameMapping Maven / Gradle / Ivy
/*
* Copyright 2018 Johannes Donath
* and other copyright owners as documented in the project's IP log.
*
* 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.
*/
package org.basinmc.plunger.mapping;
import edu.umd.cs.findbugs.annotations.NonNull;
import java.util.Optional;
/**
* Resolves one or more mappings for class names.
*
* @author Johannes Donath
*/
@FunctionalInterface
public interface ClassNameMapping {
/**
* Retrieves the target name for a specified class name.
*
* The class name will be provided as a fully qualified name in its JVM format (e.g. each
* element of the package path will be separated by a slash ("/") character. For instance,
* "org.basinmc.plunger.Class" would be passed as "org/basinmc/plunger/Class". The return value is
* expected to follow the same formatting.
*
* When no mapping is defined for the indicated class, an empty optional should be returned
* instead.
*
* @param original the original class name.
* @return a mapping or, if no remapping is desired, an empty optional.
*/
@NonNull
Optional getClassName(@NonNull String original);
/**
* Retrieves an inverted version of this mapping.
*
* The resulting mapping will effectively reverse the effects of this mapping (e.g. when a
* mapping defines a remapping from "org/basinmc/plunger/Class" to "A", the inverse mapping would
* contain a mapping from "A" to "org/basinmc/plunger/Class").
*
* @return an inverse of this mapping.
* @throws UnsupportedOperationException when the operation is not supported by this
* implementation.
*/
@NonNull
default ClassNameMapping invert() {
throw new UnsupportedOperationException();
}
}