Files
narya/src/as/com/threerings/util/Name.as
T
Ray Greenwell 53aacc4bbc Added ClassUtil.isSameClass(), reimplemented another function using
the constructor property.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4322 542714f4-19e9-0310-aa3c-eee0fc999fb1
2006-08-12 01:19:30 +00:00

95 lines
2.1 KiB
ActionScript

package com.threerings.util {
import com.threerings.util.Equalable;
import com.threerings.io.ObjectInputStream;
import com.threerings.io.ObjectOutputStream;
import com.threerings.io.Streamable;
public class Name extends Object
implements Comparable, Hashable, Streamable
{
public function Name (name :String = "")
{
_name = name;
}
public function getNormal () :String
{
if (_normal == null) {
_normal = normalize(_name);
if (_normal === _name) {
_normal = _name;
}
}
return _normal;
}
public function isValid () :Boolean
{
return !isBlank();
}
public function isBlank () :Boolean
{
return Name.isBlank(this);
}
public function toString () :String
{
return _name;
}
// from interface Hashable
public function equals (other :Object) :Boolean
{
return (other != null) && ClassUtil.isSameClass(other, this) &&
(getNormal() === (other as Name).getNormal());
}
// from interface Hashable
public function hashCode () :int
{
return StringUtil.hashCode(getNormal());
}
// from interface Comparable
public function compareTo (other :Object) :int
{
var thisNormal :String = getNormal();
var thatNormal :String = (other as Name).getNormal();
return thisNormal.localeCompare(thatNormal);
}
// from interface Streamable
public function writeObject (out :ObjectOutputStream) :void
//throws IOError
{
out.writeField(_name);
}
// from interface Streamable
public function readObject (ins :ObjectInputStream) :void
//throws IOError
{
_name = (ins.readField(String) as String);
}
protected function normalize (txt :String) :String
{
return txt.toLowerCase();
}
public static function isBlank (name :Name) :Boolean
{
return (name == null || "" === name.toString());
}
/** The raw name text. */
protected var _name :String;
/** The normalized name text. */
protected var _normal :String;
}
}