All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.wst.validation.internal.Serializer Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.validation.internal;

/**
 * A simple encoder that knows how to convert booleans, integers and strings, into a single string.
 * 
 * @see Deserializer
 * @author karasiuk
 *
 */
public class Serializer {
	private StringBuffer _buffer;
	
	public Serializer(int size){
		_buffer = new StringBuffer(size);
	}
	
	public void put(boolean bool){
		_buffer.append(bool ? 'T' : 'F');
	}
	
	public void put(String string){
		put(string.length());
		_buffer.append(string);
	}
	
	public void put(int anInt){
		String s = String.valueOf(anInt);
		int len = s.length();
		_buffer.append(len-1);
		_buffer.append(s);
	}
	
	@Override
	public String toString() {
		return _buffer.toString();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy