org.neo4j.values.storable.TextValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-values Show documentation
Show all versions of neo4j-values Show documentation
Neo4j property value system.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.values.storable;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.neo4j.values.ValueMapper;
import org.neo4j.values.virtual.ListValue;
import static org.neo4j.values.storable.Values.stringArray;
import static org.neo4j.values.virtual.VirtualValues.fromArray;
public abstract class TextValue extends HashMemoizingScalarValue
{
static final ListValue EMPTY_SPLIT = fromArray( stringArray( "", "" ) );
TextValue()
{
}
public abstract String stringValue();
/**
* The length of a TextValue is the number of Unicode code points in the text.
*
* @return The number of Unicode code points.
*/
public abstract int length();
public abstract boolean isEmpty();
public abstract TextValue substring( int start, int length );
public TextValue substring( int start )
{
return substring( start, Math.max( length() - start, start ) );
}
public abstract TextValue trim();
public abstract TextValue ltrim();
public abstract TextValue rtrim();
public abstract TextValue toLower();
public abstract TextValue toUpper();
public abstract ListValue split( String separator );
public abstract ListValue split( List separators );
public abstract TextValue replace( String find, String replace );
public abstract TextValue reverse();
public abstract TextValue plus( TextValue other );
public abstract boolean startsWith( TextValue other );
public abstract boolean endsWith( TextValue other );
public abstract boolean contains( TextValue other );
public abstract int compareTo( TextValue other );
@Override
protected int unsafeCompareTo( Value otherValue )
{
return compareTo( (TextValue) otherValue );
}
@Override
public final boolean equals( boolean x )
{
return false;
}
@Override
public final boolean equals( long x )
{
return false;
}
@Override
public final boolean equals( double x )
{
return false;
}
@Override
public NumberType numberType()
{
return NumberType.NO_NUMBER;
}
@Override
public T map( ValueMapper mapper )
{
return mapper.mapText( this );
}
abstract Matcher matcher( Pattern pattern );
}