Package com.anylogic.engine
- java.lang.Object
-
- java.lang.Enum<ModelPropertyName>
-
- com.anylogic.engine.ModelPropertyName
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ModelPropertyName>
@AnyLogicInternalAPI public enum ModelPropertyName extends java.lang.Enum<ModelPropertyName>
This class is internal and shouldn't be called by user.
it may be removed/renamed in future.
it may be removed/renamed in future.
- Author:
- AnyLogic North America, LLC https://anylogic.com
DATABASE_ALIAS |
|
DATABASE_CONNECTION_MODE |
File, Server
|
DATABASE_SERVER_HOST |
|
DATABASE_SERVER_PORT |
|
DB_DESCRIPTOR_CLASS |
|
IMPORTS_AGENT_ |
|
IMPORTS_MODEL |
|
LOGGING |
|
MODEL_NAME |
|
RL_EXPERIMENT |
|
Enum Constant | Description |
---|
static ModelPropertyName |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ModelPropertyName[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method | Description |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getClass, notify, notifyAll, wait, wait, wait
public static final ModelPropertyName MODEL_NAME
public static final ModelPropertyName DATABASE_CONNECTION_MODE
File, Server
public static final ModelPropertyName DATABASE_SERVER_HOST
public static final ModelPropertyName DATABASE_SERVER_PORT
public static final ModelPropertyName DATABASE_ALIAS
public static final ModelPropertyName DB_DESCRIPTOR_CLASS
public static final ModelPropertyName LOGGING
public static final ModelPropertyName IMPORTS_MODEL
public static final ModelPropertyName IMPORTS_AGENT_
public static final ModelPropertyName RL_EXPERIMENT
public static ModelPropertyName[] 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 (ModelPropertyName c : ModelPropertyName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
public static ModelPropertyName valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
How can we improve this article?
-