public enum NamedPackage extends Enum<NamedPackage>
| Enum Constant and Description |
|---|
CORE
Standard JEP functions
|
CRYPTO
Custom encryption functions
|
DATA_MANIPULATION
Custom data manipulation functions
|
DATE
Custom date/time functions
|
MATH
Custom math functions
|
RANDOM
Custom random generation functions
|
STATISTICS
Custom statistics functions
|
STRING
Custom string functions
|
UTIL
Custom utility functions
|
WEB
Custom HTTP/Web functions
|
| Modifier and Type | Method and Description |
|---|---|
static NamedPackage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NamedPackage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NamedPackage CORE
public static final NamedPackage CRYPTO
public static final NamedPackage DATE
public static final NamedPackage DATA_MANIPULATION
public static final NamedPackage MATH
public static final NamedPackage RANDOM
public static final NamedPackage STATISTICS
public static final NamedPackage STRING
public static final NamedPackage UTIL
public static final NamedPackage WEB
public static NamedPackage[] values()
for (NamedPackage c : NamedPackage.values()) System.out.println(c);
public static NamedPackage 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 © 2021. All rights reserved.