Interface LibraryCoordinates
public interface LibraryCoordinates
Encapsulates information about the artifact coordinates of a library.
- Since:
- 2.3.0
-
Method Summary
Modifier and TypeMethodDescriptionReturn the artifact ID of the coordinates.Return the group ID of the coordinates.Return the version of the coordinates.static LibraryCoordinatesFactory method to createLibraryCoordinateswith the specified values.static StringtoStandardNotationString(@Nullable LibraryCoordinates coordinates) Utility method that returns the given coordinates using the standardgroup:artifact:versionform.
-
Method Details
-
getGroupId
-
getArtifactId
-
getVersion
-
of
Factory method to createLibraryCoordinateswith the specified values.- Parameters:
groupId- the group IDartifactId- the artifact IDversion- the version- Returns:
- a new
LibraryCoordinatesinstance
-
toStandardNotationString
Utility method that returns the given coordinates using the standardgroup:artifact:versionform.- Parameters:
coordinates- the coordinates to convert (may benull)- Returns:
- the standard notation form or
"::"when the coordinates are null
-