Skip to content

Commit d6094e7

Browse files
committed
Javadoc
1 parent 19fd24b commit d6094e7

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

commons-vfs2-hdfs/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileAttributes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.vfs2.provider.hdfs;
1818

1919
/**
20-
* HDFS file content attributes.
20+
* Enumerates HDFS file content attributes.
2121
*
2222
* @since 2.1
2323
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/CacheStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.vfs2;
1818

1919
/**
20-
* An enumerated type to deal with the various cache strategies.
20+
* Enumerates the various cache strategies.
2121
*/
2222
public enum CacheStrategy {
2323

commons-vfs2/src/main/java/org/apache/commons/vfs2/Capability.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.vfs2;
1818

1919
/**
20-
* An enumerated type representing the capabilities of files and file systems.
20+
* Enumerates the capabilities of files and file systems.
2121
*/
2222
public enum Capability {
2323

commons-vfs2/src/main/java/org/apache/commons/vfs2/FileType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.vfs2;
1818

1919
/**
20-
* An enumerated type that represents a file's type.
20+
* Enumerates a file's type.
2121
*/
2222
public enum FileType {
2323

commons-vfs2/src/main/java/org/apache/commons/vfs2/NameScope.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.vfs2;
1818

1919
/**
20-
* An enumerated type for file name scope, used when resolving a name relative to a file.
20+
* Enumerates file name scopes, used when resolving a name relative to a file.
2121
*/
2222
public enum NameScope {
2323

commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/IOCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import java.util.Objects;
2121

2222
/**
23-
* Enumeration of IO case sensitivity.
23+
* Enumerates IO case sensitivity options.
2424
* <p>
2525
* Different filing systems have different rules for case-sensitivity. Windows
2626
* is case-insensitive, Unix is case-sensitive.

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import org.apache.commons.net.ftp.FTP;
2020

2121
/**
22-
* The FTP file types.
22+
* Enumerates FTP file types.
2323
*
2424
* @since 2.1
2525
*/

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsDataChannelProtectionLevel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.vfs2.provider.ftps;
1818

1919
/**
20-
* Protection level of the data channel in a FTPS communication.
20+
* Enumerates protection levels of the data channel in a FTPS communication.
2121
* <ul>
2222
* <li>C - Clear</li>
2323
* <li>S - Safe</li>

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.vfs2.provider.ftps;
1818

1919
/**
20-
* Mode of the FTPS connection.
20+
* Enumerates modes of the FTPS connection.
2121
*
2222
* <p>
2323
* Note, that implicit mode is not standardized and considered as deprecated. Some unit tests for VFS fail with implicit

commons-vfs2/src/main/java/org/apache/commons/vfs2/util/PosixPermissions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class PosixPermissions {
2929

3030
/**
31-
* Permission types.
31+
* Enumerates permission types.
3232
*/
3333
public enum Type {
3434

0 commit comments

Comments
 (0)