All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rx.io.FileMode Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy