Uses of Class
xyz.apollosoftware.bibliothiki.versioning.schemes.semver.SemanticVersion.PreReleaseIdentifier
Packages that use SemanticVersion.PreReleaseIdentifier
-
Uses of SemanticVersion.PreReleaseIdentifier in xyz.apollosoftware.bibliothiki.versioning.schemes.semver
Classes in xyz.apollosoftware.bibliothiki.versioning.schemes.semver that implement interfaces with type arguments of type SemanticVersion.PreReleaseIdentifierModifier and TypeClassDescriptionstatic classA pre-release build identifier.Methods in xyz.apollosoftware.bibliothiki.versioning.schemes.semver that return SemanticVersion.PreReleaseIdentifierModifier and TypeMethodDescriptionstatic @NonNull SemanticVersion.PreReleaseIdentifierParse the given value as aSemanticVersion.PreReleaseIdentifier.static @NonNull SemanticVersion.PreReleaseIdentifierSemanticVersion.PreReleaseIdentifier.preRelease(@NonNull String value) A static sugar forSemanticVersion.PreReleaseIdentifier.parse(String).Methods in xyz.apollosoftware.bibliothiki.versioning.schemes.semver that return types with arguments of type SemanticVersion.PreReleaseIdentifierModifier and TypeMethodDescription@NonNull List<SemanticVersion.PreReleaseIdentifier> SemanticVersion.preRelease()The list of pre-release identifiers (seeSemanticVersion.PreReleaseIdentifier).Methods in xyz.apollosoftware.bibliothiki.versioning.schemes.semver with parameters of type SemanticVersion.PreReleaseIdentifierModifier and TypeMethodDescription@NonNull SemanticVersion.BuilderSemanticVersion.Builder.addPreRelease(@NonNull SemanticVersion.PreReleaseIdentifier @NonNull ... preRelease) Add to the pre-release components.intSemanticVersion.PreReleaseIdentifier.compareTo(@NonNull SemanticVersion.PreReleaseIdentifier other) @NonNull SemanticVersion.BuilderSemanticVersion.Builder.preRelease(@NonNull SemanticVersion.PreReleaseIdentifier @NonNull ... preRelease) Set the pre-release components.Constructor parameters in xyz.apollosoftware.bibliothiki.versioning.schemes.semver with type arguments of type SemanticVersion.PreReleaseIdentifierModifierConstructorDescriptionSemanticVersion(int major, int minor, int patch, List<SemanticVersion.PreReleaseIdentifier> preRelease, List<SemanticVersion.BuildIdentifier> buildMetadata) Constructor for semantic version representations.