Пример #1
0
 @Override
 public String stringValue(CharBuf charBuf) {
   if (type == Type.NULL) {
     return null;
   } else {
     return type.toString();
   }
 }
Пример #2
0
 @Override
 public Type typeEnum() {
   Object o = this.getValue(this.thisObject);
   return Type.getInstanceType(o);
 }
Пример #3
0
 public String toString() {
   return type.toString();
 }