Re: [commons-collections]: how to do reverse iteration in TreeBidiMap

2005-03-30 Thread Ha ryon
I think previous() is not about to get the collection in the reverse order, it's about to be able to backtrack an iteration. Means, you did 10 next() and you realise you have went one step too far, then you do previous(). As you said, previous() doesn't start at the end. I think you have to use

Re: How to get the entire string with Configuration.getString

2005-03-30 Thread Ha ryon
maybe try : AbstractConfiguration.setDelimiter('\u'); XMLConfiguration config = new XMLConfiguration(); I would assume that, it's better to change a static parameter before an instance that need the change is created. On Wed, 30 Mar 2005 17:24:12 +0200, Zsolt Koppany [EMAIL PROTECTED]

[lang] Additions to StringUtils ?

2004-11-19 Thread Ha ryon
- I would like to be able to split a string using a String (more than one character long) separator. split(John:Arthur::Renaud:Sylvan::me:you, ::) -[ John;Arthur, Renaud:Sylvan, me:you ] - I would like to fastly join and quote at the same time : join([me, you, them], |, , ) - me|you|them