Package org.robwork.sdurw_common
Class LogBufferedChar.OverflowPolicy
- java.lang.Object
-
- org.robwork.sdurw_common.LogBufferedChar.OverflowPolicy
-
- Enclosing class:
- LogBufferedChar
public static final class LogBufferedChar.OverflowPolicy extends java.lang.Object
Behaviors for the OverflowPolicy
-
-
Field Summary
Fields Modifier and Type Field Description static LogBufferedChar.OverflowPolicy
AUTO_FLUSH
Automatically calls flush to write the buffer and the new message to the output stream.static LogBufferedChar.OverflowPolicy
REMOVE_FIRST
Remove the first added content (circular queue)static LogBufferedChar.OverflowPolicy
REMOVE_LAST
Skip the content which does not fit input the buffer
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LogBufferedChar.OverflowPolicy
swigToEnum(int swigValue)
int
swigValue()
java.lang.String
toString()
-
-
-
Field Detail
-
REMOVE_FIRST
public static final LogBufferedChar.OverflowPolicy REMOVE_FIRST
Remove the first added content (circular queue)
-
REMOVE_LAST
public static final LogBufferedChar.OverflowPolicy REMOVE_LAST
Skip the content which does not fit input the buffer
-
AUTO_FLUSH
public static final LogBufferedChar.OverflowPolicy AUTO_FLUSH
Automatically calls flush to write the buffer and the new message to the output stream. Using AUTO_FLUSH it is possible to write messages larger than the buffer size.
-
-
Method Detail
-
swigValue
public final int swigValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
swigToEnum
public static LogBufferedChar.OverflowPolicy swigToEnum(int swigValue)
-
-