Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nilable (0.21 sec)

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

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface DependencyCoordinate extends ArtifactCoordinate {
        /**
         * The type of the artifact.
         *
         * @return the type
         */
        @Nonnull
        Type getType();
    
        @Nonnull
        DependencyScope getScope();
    
        @Nullable
        Boolean getOptional();
    
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 1.4K bytes
    - Viewed (0)
Back to top