public abstract class AbstractVectorMetaData extends Object
Constructor and Description |
---|
AbstractVectorMetaData() |
Modifier and Type | Method and Description |
---|---|
static AbstractVectorMetaData |
createMetaData(String label) |
boolean |
equals(Object obj) |
abstract String |
getDisplayLabel()
Returns a String to display on screen.
|
abstract String |
getID()
Return the unique ID of the Vector.
|
int |
hashCode() |
abstract boolean |
matches(Pattern pattern)
Tests if the vectors MetaData matches the given Pattern.
|
boolean |
matches(String pattern)
Tests if the vector's MetaData matches the given pattern.
|
abstract boolean |
matches(String pattern,
boolean ignoreCase)
Tests if the vector's MetaData matches the given pattern.
|
String |
toString() |
public abstract String getDisplayLabel()
public abstract String getID()
public abstract boolean matches(Pattern pattern)
pattern
- the Pattern to test.true
if the pattern matches.matches(String)
public abstract boolean matches(String pattern, boolean ignoreCase)
pattern
- The pattern to match.ignoreCase
- set true
to ignore case considerations.true
if the pattern matches.matches(Pattern)
,
matches(String)
public boolean matches(String pattern)
pattern
- The pattern to matchtrue
if the pattern matches.matches(Pattern)
,
matches(String, boolean)
public static AbstractVectorMetaData createMetaData(String label)