spring DependencyVersion 源码

  • 2022-08-12
  • 浏览 (324)

springboot DependencyVersion 代码

文件路径:/buildSrc/src/main/java/org/springframework/boot/build/bom/bomr/version/DependencyVersion.java

/*
 * Copyright 2012-2020 the original author or authors.
 *
 * 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
 *
 *      https://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.springframework.boot.build.bom.bomr.version;

import java.util.Arrays;
import java.util.List;
import java.util.function.Function;

/**
 * Version of a dependency.
 *
 * @author Andy Wilkinson
 */
public interface DependencyVersion extends Comparable<DependencyVersion> {

	/**
	 * Returns whether this version is newer than the given {@code other} version.
	 * @param other version to test
	 * @return {@code true} if this version is newer, otherwise {@code false}
	 */
	boolean isNewerThan(DependencyVersion other);

	/**
	 * Returns whether this version has the same major versions as the {@code other}
	 * version while also being newer.
	 * @param other version to test
	 * @return {@code true} if this version has the same major and is newer, otherwise
	 * {@code false}
	 */
	boolean isSameMajorAndNewerThan(DependencyVersion other);

	/**
	 * Returns whether this version has the same major and minor versions as the
	 * {@code other} version while also being newer.
	 * @param other version to test
	 * @return {@code true} if this version has the same major and minor and is newer,
	 * otherwise {@code false}
	 */
	boolean isSameMinorAndNewerThan(DependencyVersion other);

	static DependencyVersion parse(String version) {
		List<Function<String, DependencyVersion>> parsers = Arrays.asList(CalendarVersionDependencyVersion::parse,
				ArtifactVersionDependencyVersion::parse, ReleaseTrainDependencyVersion::parse,
				NumericQualifierDependencyVersion::parse, CombinedPatchAndQualifierDependencyVersion::parse,
				LeadingZeroesDependencyVersion::parse, UnstructuredDependencyVersion::parse);
		for (Function<String, DependencyVersion> parser : parsers) {
			DependencyVersion result = parser.apply(version);
			if (result != null) {
				return result;
			}
		}
		throw new IllegalArgumentException("Version '" + version + "' could not be parsed");
	}

}

相关信息

spring 源码目录

相关文章

spring AbstractDependencyVersion 源码

spring ArtifactVersionDependencyVersion 源码

spring CalendarVersionDependencyVersion 源码

spring CombinedPatchAndQualifierDependencyVersion 源码

spring LeadingZeroesDependencyVersion 源码

spring NumericQualifierDependencyVersion 源码

spring ReleaseTrainDependencyVersion 源码

spring UnstructuredDependencyVersion 源码

0  赞