Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for uniqBy (0.17 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinate.java

        /**
         * The extension of the artifact.
         *
         * @return the extension or an empty string if none, never {@code null}
         */
        @Nonnull
        String getExtension();
    
        /**
         * Unique id identifying this artifact
         */
        @Nonnull
        default String getId() {
            return getGroupId()
                    + ":" + getArtifactId()
                    + ":" + getExtension()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top