All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.octopusden.releng.versions.VersionFormatter Maven / Gradle / Ivy

The newest version!
package org.octopusden.releng.versions;

public interface VersionFormatter {

    String format(String format, IVersionInfo version);

    String formatToCustomerVersion(String customerFormat, String versionFormat, String versionPrefix, IVersionInfo versionInfo);

    boolean matchesFormat(String format, String version);

    boolean matchesFormat(String customerFormat, String versionFormat, String versionPrefix, String version);

    boolean matchesNonStrictFormat(String format, String version);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy