8
8
import static java .util .stream .Collectors .*;
9
9
10
10
/**
11
- * Builds and loads and {@link Dotenv} instance
11
+ * Builds and loads and {@link Dotenv} instance.
12
12
* @see Dotenv#configure()
13
13
*/
14
14
public class DotenvBuilder {
@@ -19,7 +19,7 @@ public class DotenvBuilder {
19
19
private boolean throwIfMalformed = true ;
20
20
21
21
/**
22
- * Sets the directory containing the .env file
22
+ * Sets the directory containing the .env file.
23
23
* @param path the directory containing the .env file
24
24
* @return this {@link DotenvBuilder}
25
25
*/
@@ -28,7 +28,7 @@ public DotenvBuilder directory(String path) {
28
28
return this ;
29
29
}
30
30
/**
31
- * Sets the name of the .env file. The default is .env
31
+ * Sets the name of the .env file. The default is .env.
32
32
* @param name the filename
33
33
* @return this {@link DotenvBuilder}
34
34
*/
@@ -38,7 +38,7 @@ public DotenvBuilder filename(String name) {
38
38
}
39
39
40
40
/**
41
- * Does not throw an exception when .env is missing
41
+ * Does not throw an exception when .env is missing.
42
42
* @return this {@link DotenvBuilder}
43
43
*/
44
44
public DotenvBuilder ignoreIfMissing () {
@@ -47,7 +47,7 @@ public DotenvBuilder ignoreIfMissing() {
47
47
}
48
48
49
49
/**
50
- * Does not throw an exception when .env is malformed
50
+ * Does not throw an exception when .env is malformed.
51
51
* @return this {@link DotenvBuilder}
52
52
*/
53
53
public DotenvBuilder ignoreIfMalformed () {
@@ -56,7 +56,7 @@ public DotenvBuilder ignoreIfMalformed() {
56
56
}
57
57
58
58
/**
59
- * Sets each environment variable as system properties
59
+ * Sets each environment variable as system properties.
60
60
* @return this {@link DotenvBuilder}
61
61
*/
62
62
public DotenvBuilder systemProperties () {
@@ -65,7 +65,7 @@ public DotenvBuilder systemProperties() {
65
65
}
66
66
67
67
/**
68
- * Load the contents of .env into the virtual environment
68
+ * Load the contents of .env into the virtual environment.
69
69
* @return a new {@link Dotenv} instance
70
70
* @throws DotenvException when an error occurs
71
71
*/
0 commit comments