public enum SplitEnum extends Enum<SplitEnum>
| Modifier and Type | Method and Description |
|---|---|
static SplitEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SplitEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitEnum SPLIT1
public static final SplitEnum Split2
public static final SplitEnum split3
public static SplitEnum[] values()
for (SplitEnum c : SplitEnum.values()) System.out.println(c);
public static SplitEnum 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 © 2005–2025. All rights reserved.