forked from magento/magento2-phpstorm-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIssueSeverityLevel.java
94 lines (81 loc) · 2.17 KB
/
IssueSeverityLevel.java
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
package com.magento.idea.magento2uct.packages;
import com.magento.idea.magento2uct.execution.process.OutputWrapper;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
public enum IssueSeverityLevel {
WARNING(3, OutputWrapper.WARNING_WRAPPER.replace("{text}", "[WARNING]")),
ERROR(2, OutputWrapper.ERROR_WRAPPER.replace("{text}", "[ERROR]")),
CRITICAL(1, OutputWrapper.CRITICAL_WRAPPER.replace("{text}", "[CRITICAL]"));
private final int level;
private final String formattedLabel;
/**
* ENUM constructor.
*
* @param level int
* @param formattedLabel String
*/
IssueSeverityLevel(final int level, final String formattedLabel) {
this.level = level;
this.formattedLabel = formattedLabel;
}
/**
* Get severity level.
*
* @return int
*/
public int getLevel() {
return level;
}
/**
* Get severity label.
*
* @return String
*/
public String getLabel() {
return this.toString();
}
/**
* Get formatted label.
*
* @return String
*/
public String getFormattedLabel() {
return formattedLabel;
}
/**
* Get issue severity level by level value.
*
* @param level int
*
* @return IssueSeverityLevel
*/
public static IssueSeverityLevel getByLevel(final int level) {
for (final IssueSeverityLevel issueSeverityLevel : IssueSeverityLevel.values()) {
if (issueSeverityLevel.getLevel() == level) {
return issueSeverityLevel;
}
}
return getDefaultIssueSeverityLevel();
}
/**
* Get severity levels.
*
* @return List[IssueSeverityLevel]
*/
public static List<IssueSeverityLevel> getSeverityLabels() {
return new LinkedList<>(Arrays.asList(IssueSeverityLevel.values()));
}
/**
* Get default issue severity level.
*
* @return IssueSeverityLevel
*/
public static IssueSeverityLevel getDefaultIssueSeverityLevel() {
return WARNING;
}
}