Enum EActionParameter
- java.lang.Object
-
- java.lang.Enum<EActionParameter>
-
- org.neotropic.kuwaiba.modules.commercial.softman.components.EActionParameter
-
- All Implemented Interfaces:
Serializable
,Comparable<EActionParameter>
public enum EActionParameter extends Enum<EActionParameter>
Common properties used by visual actions as mandatory properties, and some database relationships or node names.- Author:
- Hardy Ryan Chingal Martinez <ryan.chingal@kuwaiba.org> created on 24/10/2023-15:29
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_LICENSE
ADD_POOL
BUSINESS_OBJECT
CLASS_NAME
DELETE_LICENSE
DELETE_POOL
LICENSE
LICENSE_HAS
LICENSE_NAME
LICENSE_POOL
LICENSE_PRODUCT
LICENSE_TYPE
NAME
OBJECT
POOL
RELEASE_LICENSE
RELEASE_RELATIONSHIP
SOFTWARE_TYPE
SOURCE_OBJECT
TARGET_OBJECT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EActionParameter
get(String abbreviation)
static EActionParameter
valueOf(String name)
Returns the enum constant of this type with the specified name.static EActionParameter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final EActionParameter NAME
-
CLASS_NAME
public static final EActionParameter CLASS_NAME
-
ADD_LICENSE
public static final EActionParameter ADD_LICENSE
-
DELETE_LICENSE
public static final EActionParameter DELETE_LICENSE
-
LICENSE
public static final EActionParameter LICENSE
-
LICENSE_NAME
public static final EActionParameter LICENSE_NAME
-
LICENSE_TYPE
public static final EActionParameter LICENSE_TYPE
-
LICENSE_PRODUCT
public static final EActionParameter LICENSE_PRODUCT
-
RELEASE_LICENSE
public static final EActionParameter RELEASE_LICENSE
-
OBJECT
public static final EActionParameter OBJECT
-
SOURCE_OBJECT
public static final EActionParameter SOURCE_OBJECT
-
TARGET_OBJECT
public static final EActionParameter TARGET_OBJECT
-
RELEASE_RELATIONSHIP
public static final EActionParameter RELEASE_RELATIONSHIP
-
BUSINESS_OBJECT
public static final EActionParameter BUSINESS_OBJECT
-
SOFTWARE_TYPE
public static final EActionParameter SOFTWARE_TYPE
-
ADD_POOL
public static final EActionParameter ADD_POOL
-
DELETE_POOL
public static final EActionParameter DELETE_POOL
-
POOL
public static final EActionParameter POOL
-
LICENSE_POOL
public static final EActionParameter LICENSE_POOL
-
LICENSE_HAS
public static final EActionParameter LICENSE_HAS
-
-
Method Detail
-
values
public static EActionParameter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EActionParameter c : EActionParameter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EActionParameter valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
get
public static EActionParameter get(String abbreviation)
-
-