org.rx.io.FileMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.io;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
public enum FileMode {
READ_ONLY("r"),
READ_WRITE("rw"),
READ_WRITE_AND_SYNC_CONTENT("rwd"),
READ_WRITE_AND_SYNC_ALL("rws");
final String value;
}