mirror of
https://github.com/fangyidong/json-simple.git
synced 2025-12-06 07:20:53 +03:00
13 lines
242 B
Java
13 lines
242 B
Java
package org.json.simple.rope;
|
|
|
|
class Node {
|
|
static final int TYPE_STR = 0;
|
|
static final int TYPE_CH = 1;
|
|
static final int TYPE_UNKNOWN = -1;
|
|
|
|
int type = TYPE_UNKNOWN;
|
|
Node next;
|
|
char content_ch;
|
|
String content_str;
|
|
}
|