Enum Class IzClasspathContainer.Type

java.lang.Object
java.lang.Enum<IzClasspathContainer.Type>
com.iizigo.java.classpath.IzClasspathContainer.Type
All Implemented Interfaces:
Serializable, Comparable<IzClasspathContainer.Type>, Constable
Enclosing class:
IzClasspathContainer

public static enum IzClasspathContainer.Type extends Enum<IzClasspathContainer.Type>
The type of container.
  • Enum Constant Details

  • Method Details

    • values

      public static IzClasspathContainer.Type[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static IzClasspathContainer.Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getPath

      public IPath getPath()
      Gets the path for the classpath.
    • getDescription

      public String getDescription()
      Gets the description.
    • fromPath

      public static IzClasspathContainer.Type fromPath(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(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(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(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(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.