aboutsummaryrefslogtreecommitdiff
path: root/src/stages.rs
blob: 278cd92d55f4b66419e99353cd80cdec045256ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use wmap_renderer::StageType;

/// All available stage types for rendering Wardley Maps.
/// Order determines dropdown menu order.
pub const ALL_STAGE_TYPES: &[StageType] = &[
    StageType::Activities,
    StageType::Practice,
    StageType::Data,
    StageType::Knowledge,
    StageType::Ubiquity,
    StageType::Certainty,
    StageType::PublicationTypes,
    StageType::Market,
    StageType::KnowledgeManagement,
    StageType::MarketPerception,
    StageType::UserPerception,
    StageType::PerceptionInIndustry,
    StageType::FocusOfValue,
    StageType::Understanding,
    StageType::Comparison,
    StageType::Failure,
    StageType::MarketAction,
    StageType::Efficiency,
    StageType::DecisionDrivers,
    StageType::Behavior,
];