forked from olap4j/olap4j
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add methods .elementName and .asMap() to NamedList.
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@509 c6a108a4-781c-0410-a6c6-c2d559e19af0
- Loading branch information
1 parent
75f5545
commit 5e11a1f
Showing
9 changed files
with
135 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
// $Id: ArrayNamedListImpl.java 482 2012-01-05 23:27:27Z jhyde $ | ||
// | ||
// Licensed to Julian Hyde under one or more contributor license | ||
// agreements. See the NOTICE file distributed with this work for | ||
// additional information regarding copyright ownership. | ||
// | ||
// Julian Hyde licenses this file to you under the Apache License, | ||
// Version 2.0 (the "License"); you may not use this file except in | ||
// compliance with the License. You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
*/ | ||
package org.olap4j.impl; | ||
|
||
import org.olap4j.metadata.NamedList; | ||
|
||
import java.util.*; | ||
|
||
/** | ||
* Map backed by a {@link org.olap4j.metadata.NamedList}. | ||
* | ||
* @author jhyde | ||
* @version $Id: AbstractNamedList.java 482 2012-01-05 23:27:27Z jhyde $ | ||
*/ | ||
class NamedListMap<T> extends AbstractMap<String, T> { | ||
private final NamedList<T> namedList; | ||
|
||
/** | ||
* Creates a NamedListMap. | ||
* | ||
* @param namedList Named list | ||
*/ | ||
public NamedListMap(NamedList<T> namedList) { | ||
this.namedList = namedList; | ||
} | ||
|
||
public Set<Entry<String, T>> entrySet() { | ||
return new AbstractSet<Entry<String, T>>() { | ||
public Iterator<Entry<String, T>> iterator() { | ||
final Iterator<T> iterator = namedList.iterator(); | ||
return new Iterator<Entry<String, T>>() { | ||
public boolean hasNext() { | ||
return iterator.hasNext(); | ||
} | ||
|
||
public Entry<String, T> next() { | ||
T x = iterator.next(); | ||
String name = namedList.elementName(x); | ||
return new Pair<String, T>(name, x); | ||
} | ||
|
||
public void remove() { | ||
iterator.remove(); | ||
} | ||
}; | ||
} | ||
|
||
public int size() { | ||
return namedList.size(); | ||
} | ||
}; | ||
} | ||
} | ||
|
||
// End NamedListMap.java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters