/* * Copyright 2004-2011 H2 Group. Multiple-Licensed under the H2 License, * Version 1.0, and under the Eclipse Public License, Version 1.0 * (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.dev.store.btree; import java.nio.ByteBuffer; /** * A string type. */ public class StringType implements DataType { public int compare(Object a, Object b) { return a.toString().compareTo(b.toString()); } public int getMaxLength(Object obj) { return DataUtils.MAX_VAR_INT_LEN + 3 * obj.toString().length(); } public int getMemory(Object obj) { return 24 + 2 * obj.toString().length(); } public String read(ByteBuffer buff) { int len = DataUtils.readVarInt(buff); return DataUtils.readString(buff, len); } public void write(ByteBuffer buff, Object obj) { String s = obj.toString(); int len = s.length(); DataUtils.writeVarInt(buff, len); DataUtils.writeStringData(buff, s, len); } public String asString() { return ""; } }