Naming Conventions

Meaningfull Process Configurations

Use Action-Oriented Names

States often represent an action or a condition of an entity. Use descriptive, action-oriented names to make their purpose clear.

Examples:

Keep Names Concise but Descriptive

Avoid overly long or ambiguous names. A concise yet descriptive name improves readability.

Use Consistent Verb Tenses

Stick to a single tense across all state names, typically present participle (e.g., Processing) or infinitive (e.g., Process).

Choose a Consistent Naming Style

Choose a consistent style depending on your coding environment or organizational guidelines.

Avoid Redundant or Implicit Context

Do not include redundant information that is already implied by the FSM context or structure.

Consider State Purpose

Choose naming conventions based on whether the state represents:

Use Domain-Specific Language

Match names with terms used in the domain or industry the FSM represents. This ensures familiarity for users and developers.

Example: Order Management

Top-Level States:

Nested States Under ProcessingOrder: