public static enum URLPart.Type extends Enum<URLPart.Type>
| Enum Constant and Description |
|---|
FS_FILE |
JAR |
SUB_PATH |
URL |
URL_FILE |
WEB |
| Modifier and Type | Method and Description |
|---|---|
static URLPart.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static URLPart.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final URLPart.Type WEB
public static final URLPart.Type FS_FILE
public static final URLPart.Type URL_FILE
public static final URLPart.Type URL
public static final URLPart.Type JAR
public static final URLPart.Type SUB_PATH
public static URLPart.Type[] values()
for (URLPart.Type c : URLPart.Type.values()) System.out.println(c);
public static URLPart.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 vpc open source initiative. All rights reserved.