Add getFirst, getLast, repeatLast methods.
This commit is contained in:
parent
19d2f6f0b0
commit
ab1a21d898
1 changed files with 70 additions and 0 deletions
|
@ -368,6 +368,46 @@ public class StringList extends ArrayList<String> implements CharSequence
|
||||||
return (result);
|
return (result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFirst()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
if (this.size() == 0)
|
||||||
|
{
|
||||||
|
result = null;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = get(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
return (result);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLast()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
if (this.size() == 0)
|
||||||
|
{
|
||||||
|
result = null;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = get(this.size() - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
return (result);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param index
|
* @param index
|
||||||
|
@ -460,6 +500,36 @@ public class StringList extends ArrayList<String> implements CharSequence
|
||||||
return (result);
|
return (result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public StringList repeatLast(final int count)
|
||||||
|
{
|
||||||
|
StringList result;
|
||||||
|
|
||||||
|
//
|
||||||
|
if ((this.size() != 0) && (count > 0))
|
||||||
|
{
|
||||||
|
//
|
||||||
|
this.ensureCapacity(this.size() + count);
|
||||||
|
|
||||||
|
//
|
||||||
|
String last = getLast();
|
||||||
|
|
||||||
|
//
|
||||||
|
for (int index = 0; index < count; index++)
|
||||||
|
{
|
||||||
|
this.append(last);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
result = this;
|
||||||
|
|
||||||
|
//
|
||||||
|
return (result);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
|
|
Loading…
Reference in a new issue