aboutsummaryrefslogtreecommitdiff
path: root/src/stages.rs
blob: 9584c6846f24aa35f24d4b11f84b69f1d646fac6 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use wmap_renderer::StageType;

pub fn all_stages() -> &'static [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,
    ]
}

pub fn types() -> &'static [StageType] {
    &[
        StageType::Activities,
        StageType::Practice,
        StageType::Data,
        StageType::Knowledge,
    ]
}

pub fn characteristics() -> &'static [StageType] {
    &[
        StageType::Ubiquity,
        StageType::Certainty,
        StageType::PublicationTypes,
    ]
}

pub fn properties() -> &'static [StageType] {
    &[
        StageType::Market,
        StageType::KnowledgeManagement,
        StageType::MarketPerception,
        StageType::UserPerception,
        StageType::PerceptionInIndustry,
        StageType::FocusOfValue,
        StageType::Understanding,
        StageType::Comparison,
        StageType::Failure,
        StageType::MarketAction,
        StageType::Efficiency,
        StageType::DecisionDrivers,
    ]
}