Package com.iizigo.java.classpath
Enum Class IzClasspathContainer.Type
- All Implemented Interfaces:
Serializable
,Comparable<IzClasspathContainer.Type>
,Constable
- Enclosing class:
- IzClasspathContainer
The type of container.
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Enum Constant Summary
Method Summary
Modifier and TypeMethodDescriptionstatic IzClasspathContainer.Type
fromClasspathEntries
(org.eclipse.jdt.core.IClasspathEntry[] entries) Gets the Type of IIZI Library from classpath entries.static IzClasspathContainer.Type
fromClasspathEntry
(org.eclipse.jdt.core.IClasspathEntry entry) Gets the Type of IIZI Library from a classpath entry.static IzClasspathContainer.Type
fromPath
(org.eclipse.core.runtime.IPath path) Creates a Type from a Path.static IzClasspathContainer.Type
fromProject
(org.eclipse.core.resources.IProject project) Gets the Type of IIZI Library from a project.static IzClasspathContainer.Type
fromProject
(org.eclipse.jdt.core.IJavaProject project) Gets the Type of IIZI Library from a Java project.Gets the description.org.eclipse.core.runtime.IPath
getPath()
Gets the path for the classpath.static IzClasspathContainer.Type
Returns the enum constant of this class with the specified name.static IzClasspathContainer.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
Enum Constant Details
RUNTIME
Core and Plug-in libraries.SERVER
Server libraries.PLUGIN
Plug-in Development libraries.
Method Details
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
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 nameNullPointerException
- if the argument is null
getPath
public org.eclipse.core.runtime.IPath getPath()Gets the path for the classpath.getDescription
Gets the description.fromPath
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
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
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.