io.sbk.action.Action Maven / Gradle / Ivy
/**
* Copyright (c) KMG. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
package io.sbk.action;
/**
* enum Action { Writing, Reading, Write_Reading, Write_OnlyReading, Read_Writing, Read_OnlyWriting}.
*/
public enum Action {
/**
* Writing = 0
.
*/
Writing,
/**
* Reading = 1
.
*/
Reading,
/**
* Write_Reading = 2
.
*/
Write_Reading,
/**
* Write_OnlyReading = 3
.
*/
Write_OnlyReading,
/**
* Read_Writing = 4
.
*/
Read_Writing,
/**
* Read_OnlyWriting = 5
.
*/
Read_OnlyWriting,
}