org.json.simple.parser.Yytoken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-simple Show documentation
Show all versions of json-simple Show documentation
Java 7+ toolkit to quickly develop RFC 4627 JSON compatible applications.
/* Copyright 2006 FangYidong
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
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
package org.json.simple.parser;
/**
* @author FangYidong<[email protected]>
* @deprecated since 2.0.0, copied to a new package.
*/
@Deprecated
public class Yytoken {
/**
* description omitted.
*/
public static final int TYPE_VALUE=0;//JSON primitive value: string,number,boolean,null
/**
* description omitted.
*/
public static final int TYPE_LEFT_BRACE=1;
/**
* description omitted.
*/
public static final int TYPE_RIGHT_BRACE=2;
/**
* description omitted.
*/
public static final int TYPE_LEFT_SQUARE=3;
/**
* description omitted.
*/
public static final int TYPE_RIGHT_SQUARE=4;
/**
* description omitted.
*/
public static final int TYPE_COMMA=5;
/**
* description omitted.
*/
public static final int TYPE_COLON=6;
/**
* description omitted.
*/
public static final int TYPE_EOF=-1;//end of file
/**
* description omitted.
*/
public int type=0;
/**
* description omitted.
*/
public Object value=null;
/**
* @param type description omitted.
* @param value description omitted.
*/
public Yytoken(int type,Object value){
this.type=type;
this.value=value;
}
public String toString(){
StringBuffer sb = new StringBuffer();
switch(type){
case TYPE_VALUE:
sb.append("VALUE(").append(value).append(")");
break;
case TYPE_LEFT_BRACE:
sb.append("LEFT BRACE({)");
break;
case TYPE_RIGHT_BRACE:
sb.append("RIGHT BRACE(})");
break;
case TYPE_LEFT_SQUARE:
sb.append("LEFT SQUARE([)");
break;
case TYPE_RIGHT_SQUARE:
sb.append("RIGHT SQUARE(])");
break;
case TYPE_COMMA:
sb.append("COMMA(,)");
break;
case TYPE_COLON:
sb.append("COLON(:)");
break;
case TYPE_EOF:
sb.append("END OF FILE");
break;
}
return sb.toString();
}
}