Class | Description |
---|---|
AbstractAgentPlainMovementData | |
AbstractLinkToAgent<T extends Agent, | |
AbstractShapeGISMap |
GIS map projection manager and map renderer class
GIS map is a Shape and it can be placed on the model animation: it
renders the associated map projection on the screenThis class provides several projection methods |
AccelerationUnits |
Standard AnyLogic acceleration units, should be used in specific functions and parameters which work with units.
|
Agent |
This is a base class for all agent classes created by the user.
|
AgentArrayList<E extends Agent> |
Agent population list based on array implementation
Supports fast element retrieval by its index (the AgentArrayList.get(int) operation
runs in constant time).The add operation runs in amortized constant time, that is, adding n elements requires O(n) time. |
AgentConstants | |
AgentDestroyListener | |
AgentExtension |
Base interface for extensions of
Agent s. |
AgentExtensionFactory<T extends AgentExtension> | |
AgentExtensionImpl |
Base class for extensions of
Agent s.Please note that agent, during its lifetime, may change instances of some extensions (e.g. |
AgentLinkedHashSet<E extends Agent> |
Agent population collection based on
LinkedHashSet implementationThis collection offers constant time performance for the basic operations (add, remove, contains and size) and guarantees insertion-order during iteration Note, that due to set-based implementation, element retrieval by its index ( AgentLinkedHashSet.get(int) ) is extremely slow when rapidly invoked it with random
index for large collections. |
AgentList<E extends Agent> |
Agent population list interface
|
AgentOrientation | |
AgentSpacePosition | |
AmountType | |
AmountUnits |
Standard AnyLogic amount units, should be used in specific functions and parameters which work with units.
|
AngleUnits | |
AnyLogicCustomAliasProposal |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
AnyLogicCustomProposalPriority |
Users should ignore this annotation.
This annotation is used only inside the AnyLogic, for code completion purposes |
AnyLogicCustomProposalPriority.Type | |
AnyLogicCustomProposalType |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
AnyLogicCustomProposalType.Label | |
AnyLogicCustomSerialization |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. Annotation for custom serialization processing during save to snapshot operations. |
AnyLogicCustomSerializationMode |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. The mode constants for AnyLogicCustomSerialization annotation< |
AnyLogicInternalAPI |
Classes, methods and fields marked with this annotation should not be called by user
These members are invoked by engine internals and are public only due to restrictions of java language (inter-package visibility, interface members etc.) This annotation is used only inside the Engine for development purposes Methods and fiend annotated using this annotation may have names ending with "_xjal" suffix as well |
AnyLogicInternalCodegenAPI |
Classes, methods and fields marked with this annotation should not be called by user
These members are usually invoked by automatically generated code This annotation is used only inside the Engine for development purposes Methods and fiend annotated using this annotation may have names ending with "_xjal" suffix as well |
AnyLogicInternalLibraryAPI |
Classes, methods and fields marked with this annotation should not be called by user
These members are invoked by engine internals and are public only due to restrictions of java language (inter-package visibility, interface members etc.) This annotation is used only inside the Engine for development purposes Methods and fiend annotated using this annotation may have names ending with "_xjal" suffix as well |
AnyLogicLegacyAPI |
Classes, methods and fields marked with this annotation are from old versions of AnyLogic,
they are supported and may be called by user.
|
AnyLogicRuntimePreferences |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
Area2D |
This interface represents some rectangular area.
|
Area3D |
This interface represents some rectangular area.
|
AreaUnits |
Standard AnyLogic area units, should be used in specific functions and parameters which work with units.
|
ArrivalCallback | |
AutotestExperimentHost | |
CellDirection |
Constants for directions in discrete space
|
CellPosition |
A simple pair of integers:
r (row) and c (column) |
CustomDistributionAbstract<E> |
This abstract class is used to generate random numbers from a probability
density function (PDF) that is defined by the user.
|
CustomDistributionContinuous |
This class is used to generate random numbers from a probability density
function (PDF) defined as:
- piecewise linear function.
|
CustomDistributionDiscrete |
This class is used to generate random numbers from a probability density
function (PDF) defined as a set of values of any type with corresponding rates.
|
CustomDistributionOptions<E extends Enum<?>> |
This class is used to generate random enum values from a probability density
function (PDF) defined as a set of values of any type with corresponding
rates.
|
Dimension |
A dimension of a HyperArray - a set of non-negative integers (or identifiers
mapped to non-negative integers) that are used as indexes in hyper arrays.
|
DynamicEvent |
This class is a base class for dynamic events created by the user.
|
Engine |
The simulation engine that drives the model execution.
|
Engine.EventSelectionMode |
Simultaneous event selection mode constants
|
Engine.ModelType |
The type of the model, returned by Engine.
|
Engine.SolverDAEType |
The solver type for mixed differential-algebraic equations
|
Engine.SolverNAEType |
The solver type for algebraic equations
|
Engine.SolverODEType |
The solver type for ordinary differential equations
|
Engine.State |
The state of the Engine
|
Environment | Deprecated.
this class only stores constants, for compatibility and may be
removed in future
|
EnvironmentConstants | |
Event |
Base class for all kinds of (static) events: EventTimeout, EventRate and
EventCondition.
Memory: sizeof(EventOriginator) = 22 bytes |
EventCondition |
Event with trigger of type condition.
|
EventOriginator |
Base class for all constructs in AnyLogic modeling language that are able
to schedule discrete events, like Event, DynamicEvent and Transition.
Memory: sizeof(Object) + 8 bytes = 22 bytes |
EventProfiler | |
EventProfiler.EventType | |
EventRate |
Event with trigger of type rate.
|
EventTimeout |
Event with trigger of type timeout.
|
EventTimeout.Mode | |
Experiment<ROOT extends Agent> |
A base class for all AnyLogic experiments.
|
Experiment.Command | |
Experiment.State |
The state of the Engine
|
ExperimentCompareRuns<ROOT extends Agent> |
Experiment used to run simulation several times with different parameter
values set by user before each run.
To use this experiment you need to subclass from it and override method Experiment.onEngineFinished() . |
ExperimentCustom |
Base class for all custom experiments
The experiment scenario should be defined in the overridden ExperimentCustom.run() methodCustom experiment may be executed from another experiment - in this case the latter should be passed as an argument to the constructor of the custom experiment. |
ExperimentExecutionListener |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
ExperimentMultipleRuns<ROOT extends Agent> |
Base class for all experiments that support multiple simulation runs (e.g.
|
ExperimentMultipleRuns.ConfidenceLevel |
Confidence level constants
|
ExperimentOptimization<ROOT extends Agent> |
Experiment used to search for optimal solutions.
|
ExperimentParamVariation<ROOT extends Agent> |
Experiment used to run simulation several times with different parameter
values.
|
ExperimentReinforcementLearning<ROOT extends Agent, |
Base class for Reinforcement Learning experiments.
This class serves as an interface between the model and the platform (Learning Platform) using Reinforcement Learning to train some Learning Agent which is based on that platform (e.g. |
ExperimentRunFast<ROOT extends Agent> |
Base class for all experiments that support fast simulation run (e.g.
|
ExperimentSimulation<ROOT extends Agent> |
The simplest possible experiment consisting of a single simulation
run.
|
ExperimentTest<ROOT extends Agent> |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
ExtAgentContinuous |
An extension of agent designed to support agent based modeling in continuous (3D) space, in particular:
- time (continuous or discrete) - 3D continuous space - connections between agents, networks (e.g. |
ExtAgentContinuousDelegate<E extends ExtAgentContinuous> | Deprecated. |
ExtAgentDiscrete |
An extension of
Agent designed to support agent based modeling in
discrete 2D space, in particular:- time (continuous or discrete) - 2D discrete space - connections between agents, networks (e.g. |
ExtAgentGIS |
An extension of Agent designed to support agent based modeling in continuous GIS space, in particular:
- time (continuous or discrete) - continuous 2D space based on GIS map - connections between agents, networks (e.g. |
ExtAgentInteractive |
An extension of
Agent designed to support agent communication,
in particular:- time (continuous or discrete) - connections between agents, networks (e.g. |
ExtAgentWithSpatialMetrics | |
ExtAgentWithSpatialMetricsDelegate<E extends ExtAgentWithSpatialMetrics> |
Base class for extensions delegating their 'Continuous / GIS space agent' activity to an existing extension of agent
|
ExtAnimationParams | |
ExtDefaultAnimationProvider | |
ExtEntity | |
ExtEntityContinuousDelegate<E extends ExtEntity> | Deprecated. |
ExtEntityDelegate<E extends ExtEntity> |
Base class for extensions delegating their 'Entity' activity to an existing extension of agent
|
ExtEnvironmentContinuous |
Agent environment extension for continuous (3D) space
|
ExtEnvironmentDiscrete |
Agent environment extension for discrete 2D space
|
ExtEnvironmentGIS |
Agent environment extension for continuous 2D space based on GIS map
|
ExtEnvironmentInteractive |
Extension interface for agent environment with communication enabled.
|
ExtEnvironmentWithLayout | |
ExtEnvironmentWithMetrics | |
ExtRootModelAgent |
This extension may be defined only in the top-level agent of the model.
|
ExtSpace |
This extension:
Tracks moving agents (either straight movement or through network or on the GIS map)
Owns animator for agents created dynamically in flowcharts and for agents which jumped from their original space (implemented using replicated embedded object presentation shape)
|
ExtWithSpaceType |
This interface is internal and shouldn't be called by user.
it may be removed/renamed in future. |
FlowchartActivityType |
Type of state the agent may be in when inside some flowchart block.
|
FlowchartBlock |
Base class for all process flowchart blocks in new libraries since AnyLogic 7.
Provides standard functions like FlowchartBlock.remove(Agent) . |
FlowchartMappedPort<InMessageType, |
An implementation of
FlowchartPort which delegates its FlowchartMappedPort.count() and FlowchartMappedPort.isError()
methods to another port, this one is mapped with.Usage: create a custom port of this type and add connector from this port to the port of embedded object (or call FlowchartMappedPort.map(Port) on this port).There should be one and only one mapped port, otherwise an error will be thrown. |
FlowchartPort<InMessageType, |
Special Port class for flowchart blocks.
|
FlowRateUnits |
Standard AnyLogic flow rate units, should be used in specific functions and parameters which work with units.
|
GISGeneralizationUtils |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
HyperArray |
A storage for multi-dimensional data used primarily in system dynamics
models.
|
IMaintenanceable |
General parent interface that is implemented by {@link Agent)} AND
(transitively) by all markups that offer Downtime functionality.
|
IPathData | |
IRouteProvider<T extends IPathData> |
This is a base interface to create a route for an agent.
|
IRunConfiguration<T extends Agent> | |
IRunConfigurationProvider |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
IRunOutputsConsumer | |
IRunValueAccessor | |
IRunValueDescriptor<T> | |
IRunValueDescriptorImpl<T> | |
IStatechartState<A extends Agent, |
Base interface for all statechart state enumerations
|
IterableWithSize<T> |
This interface is internal and shouldn't be called by user.
it may be removed/renamed in future. Declares a collection with known size and ability to get element by index. |
IUnits<T extends IUnits<T>> |
Base interface for all units enumerations
|
LayoutType |
Layout type constants for agent environments supporting layout
|
LearningAgentInterface<O, |
Data communication interface designed for use with
ExperimentReinforcementLearning : describes
the interaction between the model and Learning Platform / pre-trained Learning Agent |
LearningAgentModelInterface<ROOT extends Agent> |
Internal interface designed for different usage patterns with Reinforcement Learning
|
LengthUnits |
Standard AnyLogic length units, should be used in specific functions and parameters which work with units.
|
LibraryEventHandler |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
LibraryEventHandler.Event | |
LinkToAgent<T extends Agent, | |
LinkToAgentAnimationSettings | |
LinkToAgentAnimationSettingsImpl | |
LinkToAgentCollection<T extends Agent, | |
LinkToAgentCollectionImpl<T extends Agent, | |
LinkToAgentImpl<T extends Agent, | |
LinkToAgentStandardImpl<T extends Agent, | |
Locatable2D |
This interface represents some point location.
|
Locatable3D |
This interface represents some location.
|
LRUCache<K, | |
MessageDeliveryType |
Message destination types for inter-agent communication
|
MetalOptimization | |
ModelException | |
ModelProperties |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
ModelPropertyName |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
NeighborhoodType |
Types of neighborhood for discrete space environment
|
NetworkType |
Agent network type constants
|
OptimizationCallback |
This class is designed for usage in optimizations performed within custom
experiments, see
ExperimentOptimization.createOptimization(Engine, OptimizationCallback) .Usage example (the code of custom experiment, requires import com.opttek.optquest.*; ): |
OptimizationEngine | |
OptQuestOptimization |
A wrapper class for COptQuestOptimization.
|
Pair<FIRST, |
A pair of two (possibly
null ) elements, may be used as key in maps.Overrides Pair.equals(Object) and Pair.hashCode() .Objects of this class are immutable: they have no setter methods. |
Path2D |
This interface represents a sequence of
(x, y) pointsCoordinates of all the points (
are relative to the base coordinates
( |
Path3D |
This interface represents a sequence of
(x, y, z) pointsCoordinates of all the points (
are relative to the base coordinates
( |
Point |
Class representing Point structure: three coordinates (x, y, z).
|
Port<InMessageType, |
Port is a universal interface of an agent via which it can send and
receive messages - arbitrary objects.
|
Position |
Class representing Point structure three coordinates (x, y, z) with two
angles for orientation.
|
Presentable |
A base for any object that can be displayed by presentation panel.
|
ProbabilityDistributionIllegalArgumentException | |
ProbabilityDistributionInfiniteLoopException | |
RateUnits |
Standard AnyLogic rate units, should be used in specific functions and parameters which work with units.
|
ReinforcementLearningDataAccessor<ROOT extends Agent, | |
ReinforcementLearningModel<ROOT extends Agent, | |
ReinforcementLearningPlatform<ROOT extends Agent, | |
RotationSpeedUnits | |
Scale | |
Schedule<V extends Serializable> |
Schedule class.
|
ScheduleWithUnits<U extends IUnits<U>> |
Schedule with units (Time, Rate etc.).
|
SDIntegrationManager |
This class solves a system of algebraic differential equations.
|
SDUtilities |
This class contains functions commonly used in System Dynamic modeling.
|
Segment2D |
This interface represents a segment:
(x, y) - (x+dx, y+dy) |
Segment3D |
This interface represents a segment:
(x, y, z) - (x+dx, y+dy, z+dz) |
SharedEditorAPI |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
SpaceType | |
SpeedUnits |
Standard AnyLogic speed units, should be used in specific functions and parameters which work with units.
|
Statechart<T extends Enum<T> & IStatechartState<?, |
Statechart - the most advanced construct to describe event- and time-driven
behavior.
|
TableFunction |
Table function enables the user to define functions by giving a number of
(argument, value) pairs, i.e.
|
TableFunction.InterpolationType | |
TableFunction.OutOfRangeAction | |
TableTransferable |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. |
TaskPreemptionPolicy |
TaskPreemptionPolicy
|
TimeUnits |
Standard AnyLogic time units, should be used in specific functions and parameters which work with units.
|
Transition |
Base class for all kinds of statechart transitions: TransitionTimeout, TransitionRate,
TransitionCondition and TransitionMessage
Memory: sizeof(EventOriginator) = 22 bytes |
TransitionCondition |
Statechart transition with trigger of type condition.
|
TransitionMessage |
Statechart transition with trigger of type message.
|
TransitionRate |
Statechart transition with trigger of type rate.
|
TransitionTimeout |
Statechart transition with trigger of type timeout.
|
Utilities |
This class provides a lot of commonly used functions and constants, including the
probability distributions and mathematical functions.
|
UtilitiesArray |
This class provides a lot of commonly used functions for operations with arrays
|
UtilitiesCollection |
This class provides a lot of commonly used functions for operations with collections / agent populations
|
UtilitiesCommon |
Various utilities, e.g.
|
UtilitiesError | |
UtilitiesMath |
Various math utilities
|
UtilitiesRandom |
Random number generation utilities for various probability distributions
|
UtilitiesStream |
This class is internal and shouldn't be called by user.
it may be removed/renamed in future. Please use UtilitiesCollection class instead |
UtilitiesString |
Various string utilities, e.g.
|
VariableDelay |
This class is designed for internal use inside AnyLogic code generation,
it shouldn't be explicitly accessed by users.
VariableDelay object accumulates a history of an expression (of type double or HyperArray and generates delayed values of the expression using the accumulated information. |
VariableDelay.Type |
Type of delay object, see description on items
|