Enum IzClasspathContainer.Type

    • Method Detail

      • values

        public static IzClasspathContainer.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (IzClasspathContainer.Type c : IzClasspathContainer.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static IzClasspathContainer.Type valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getPath

        public org.eclipse.core.runtime.IPath getPath()
        Gets the path for the classpath.
      • getDescription

        public java.lang.String getDescription()
        Gets the description.
      • fromPath

        public static IzClasspathContainer.Type fromPath​(org.eclipse.core.runtime.IPath path)
        Creates a Type from a Path.
        Parameters:
        path - The path must consist of 3 segments as "BASE_PATH/type-segment/version".
        Returns:
        The type for the path, or null for no match.
      • fromProject

        public static IzClasspathContainer.Type fromProject​(org.eclipse.core.resources.IProject project)
        Gets the Type of iizi Library from a project.
        Parameters:
        project - The project.
        Returns:
        The first encountered type (if multiple are set), or null for no match.
      • fromProject

        public static IzClasspathContainer.Type fromProject​(org.eclipse.jdt.core.IJavaProject project)
        Gets the Type of iizi Library from a Java project.
        Parameters:
        project - The Java project.
        Returns:
        The first encountered type (if multiple are set), or null for no match.
      • fromClasspathEntries

        public static IzClasspathContainer.Type fromClasspathEntries​(org.eclipse.jdt.core.IClasspathEntry[] entries)
        Gets the Type of iizi Library from classpath entries.
        Parameters:
        entries - The classpath entries.
        Returns:
        The first encountered type (if multiple are set), or null for no match.
      • fromClasspathEntry

        public static IzClasspathContainer.Type fromClasspathEntry​(org.eclipse.jdt.core.IClasspathEntry entry)
        Gets the Type of iizi Library from a classpath entry.
        Parameters:
        entry - The classpath entry.
        Returns:
        The type, or null for no match.