Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for enim (0.25 sec)

  1. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ExtensibleEnumProvider.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * An SPI interface to extend Maven with a new enum value.
     *
     * @param <T> The type of extensible enum to extend
     */
    @Experimental
    @Consumer
    public interface ExtensibleEnumProvider<T extends ExtensibleEnum> extends SpiService {
    
        /**
         * Registers new values for the T extensible enum.
         *
         * @return a collection of T instances to register
         */
        @Nonnull
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnum.java

     * can be used as keys.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ExtensibleEnum {
    
        /**
         * The {@code id} uniquely represents a value for this extensible enum.
         * This id should be used to compute the equality and hash code for the instance.
         *
         * @return the id
         */
        @Nonnull
        String id();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    /**
     * Describes whether a target should be activated or not, and if that is required or optional.
     */
    enum ActivationSettings {
        ACTIVATION_OPTIONAL(true, true),
        ACTIVATION_REQUIRED(true, false),
        DEACTIVATION_OPTIONAL(false, true),
        DEACTIVATION_REQUIRED(false, false);
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

    import org.eclipse.aether.artifact.Artifact;
    
    /**
     * Component collecting plugin validation issues and reporting them.
     *
     * @since 3.9.2
     */
    public interface PluginValidationManager {
        enum IssueLocality {
            /**
             * Issue is "user actionable", is internal to the currently built project and is reparable from scope of it
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Scope.java

    import java.util.HashMap;
    import java.util.Map;
    
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Scope for a dependency
     *
     * @since 4.0.0
     */
    @Experimental
    public enum Scope {
        EMPTY(""),
        COMPILE_ONLY("compile-only"),
        COMPILE("compile"),
        RUNTIME("runtime"),
        PROVIDED("provided"),
        TEST_COMPILE_ONLY("test-compile-only"),
        TEST("test"),
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 1.7K bytes
    - Viewed (1)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Language.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    
    import static org.apache.maven.api.ExtensibleEnums.language;
    
    /**
     * Language.
     * <p>
     * This extensible enum has two defined values, {@link #NONE} and {@link #JAVA_FAMILY},
     * but can be extended by registering a {@code org.apache.maven.api.spi.LanguageProvider}.
     * <p>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

     * the problem.
     *
     */
    public interface ModelProblem extends BuilderProblem {
    
        /**
         * Version
         */
        enum Version {
            // based on ModeBuildingResult.validationLevel
            BASE,
            V20,
            V30,
            V31,
            V40
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

     * under the License.
     */
    package org.apache.maven.internal.impl;
    
    import java.util.*;
    
    import org.apache.maven.project.CycleDetectedException;
    
    class Graph {
        private enum DfsState {
            VISITING,
            VISITED
        }
    
        final Map<String, Vertex> vertices = new LinkedHashMap<>();
    
        public Vertex getVertex(String id) {
            return vertices.get(id);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     * and on the Java module-path.</p>
     *
     * @see org.apache.maven.api.services.DependencyResolverResult#getDispatchedPaths()
     *
     * @since 4.0.0
     */
    @Experimental
    public enum JavaPathType implements PathType {
        /**
         * The path identified by the Java {@code --class-path} option.
         * Used for compilation, execution and Javadoc among others.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    reflect.Method[] getDeclaredMethods(Class); private void MethodSorter(); private static java.util.Comparator getSorter(org.junit.FixMethodOrder); static void <clinit>(); } org/junit/internal/Throwables$State$3.class package org.junit.internal; final synchronized enum Throwables$State$3 { void Throwables$State$3(String, int); public Throwables$State processLine(String); } org/junit/internal/TextListener.class package org.junit.internal; public synchronized class TextListener extends org.junit.runner.notification.RunListener...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top