We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b58c86a commit 8f83d62Copy full SHA for 8f83d62
1 file changed
src/main/java/fr/sandro642/github/jobs/misc/ResourceType.java
@@ -8,15 +8,38 @@
8
*/
9
10
public enum ResourceType {
11
+
12
+ /**
13
+ * Gradle and Maven Support.
14
+ */
15
MAIN_RESOURCES("src/main/resources"),
16
TEST_RESOURCES("src/test/resources");
17
18
19
+ * Prochainement Support : Minecraft
20
21
+ // MINECRAFT_RESOURCES("src/main/resources/minecraft");
22
23
24
25
+ * Chemin de la ressource.
26
27
private final String path;
28
29
30
+ * Constructeur pour initialiser le chemin de la ressource.
31
+ *
32
+ * @param path Le chemin de la ressource.
33
34
ResourceType(String path) {
35
this.path = path;
36
}
37
38
39
+ * Obtient le chemin de la ressource.
40
41
+ * @return Le chemin de la ressource.
42
43
public String getPath() {
44
return path;
45
0 commit comments