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

com.github.dockerjava.api.model.AccessMode Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.api.model;

/**
 * The access mode of a file system or file: read-write
 * or read-only.
 */
public enum AccessMode {
	/** read-write */
	rw,
	
	/** read-only */
	ro;
	
	/**
	 * The default {@link AccessMode}: {@link #rw}
	 */
	public static final AccessMode DEFAULT = rw;

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy