Uses of Class
com.helger.base.version.Version
Packages that use Version
-
Uses of Version in com.helger.base.thirdparty
Methods in com.helger.base.thirdparty that return VersionModifier and TypeMethodDescription@Nullable VersionCustomLicense.getVersion()@Nullable VersionELicense.getVersion()@Nullable VersionIThirdPartyModule.getVersion()@Nullable VersionThirdPartyModule.getVersion()Constructors in com.helger.base.thirdparty with parameters of type VersionModifierConstructorDescriptionCustomLicense(@NonNull @Nonempty String sID, @NonNull @Nonempty String sName, @Nullable Version aVersion, @Nullable String sURL) Create a custom license.ThirdPartyModule(@NonNull @Nonempty String sDisplayName, @NonNull @Nonempty String sCopyrightOwner, @NonNull ILicense aLicense, @Nullable Version aVersion, @Nullable String sWebsiteURL) Constructor with all fields except optional flag.ThirdPartyModule(@NonNull @Nonempty String sDisplayName, @NonNull @Nonempty String sCopyrightOwner, @NonNull ILicense aLicense, @Nullable Version aVersion, @Nullable String sWebsiteURL, boolean bOptional) Full constructor with all fields. -
Uses of Version in com.helger.base.version
Fields in com.helger.base.version declared as VersionMethods in com.helger.base.version that return VersionModifier and TypeMethodDescription@Nullable VersionVersionRange.getCeilVersion()@Nullable VersionVersionRange.getFloorVersion()IHasVersion.getVersion()@NonNull VersionIHasVersionRange.getVersionRange()static @NonNull VersionConstruct a version object from a string.
EBNF:
version ::= major( '.' minor ( '.' micro ( ( '.' | '-' ) qualifier )?static @NonNull VersionVersion.parseDotOnly(@Nullable String sVersionString) Construct a version object from a string.
EBNF:
version ::= major( '.' minor ( '.' micro ( '.' qualifier )?Methods in com.helger.base.version with parameters of type VersionModifier and TypeMethodDescriptionintCompares two Version objects.booleanVersionRange.versionMatches(@NonNull Version rhs) Check if the passed version matches this version range.Constructors in com.helger.base.version with parameters of type VersionModifierConstructorDescriptionVersionRange(@NonNull Version aFloorVersion, boolean bIncludeFloorVersion, @Nullable Version aCeilingVersion, boolean bIncludeCeilingVersion) Create a new version range depicted by two versions.VersionRange(@NonNull Version aFloorVersion, @Nullable Version aCeilingVersion) Create a new version range depicted by two versions, assuming that both the floor and the ceiling version should be included meaning we have an inclusive interval.