timeout added

This commit is contained in:
geek 2016-11-16 11:36:57 +09:00
parent d2778ddc78
commit ea914f8ce7

View File

@ -5,7 +5,8 @@ package com.loafle.bridge.discoveryport.constant;
*/
public enum DirectionType {
Send("S"),
Recv("R");
Recv("R"),
Timeout("T");
private String stringValue;
DirectionType(String string) {stringValue = string;}