All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.joda.beans.impl.BasicPropertyMap Maven / Gradle / Ivy

There is a newer version: 2.11.1
Show newest version
/*
 *  Copyright 2001-present Stephen Colebourne
 *
 *  Licensed 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.joda.beans.impl;

import java.util.AbstractMap;
import java.util.AbstractSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

import org.joda.beans.Bean;
import org.joda.beans.JodaBeanUtils;
import org.joda.beans.MetaProperty;
import org.joda.beans.Property;

/**
 * A standard map of properties.
 * 

* This is the standard implementation of a map of properties derived from a meta-bean. */ public final class BasicPropertyMap extends AbstractMap> { /** The bean. */ private final Bean bean; /** * Factory to create a property map avoiding duplicate generics. * * @param bean the bean * @return the property map, not null */ public static BasicPropertyMap of(Bean bean) { return new BasicPropertyMap(bean); } /** * Creates a property map. * * @param bean the bean that the property is bound to, not null */ private BasicPropertyMap(Bean bean) { if (bean == null) { throw new NullPointerException("Bean must not be null"); } this.bean = bean; } //----------------------------------------------------------------------- @Override public int size() { return bean.metaBean().metaPropertyCount(); } @Override public boolean containsKey(Object obj) { return obj instanceof String ? bean.metaBean().metaPropertyExists(obj.toString()) : false; } @Override public Property get(Object obj) { return containsKey(obj) ? bean.metaBean().metaProperty(obj.toString()).createProperty(bean) : null; } @Override public Set keySet() { return bean.metaBean().metaPropertyMap().keySet(); } @Override public Set>> entrySet() { return new AbstractSet>>() { // TODO: possibly override contains() @Override public int size() { return bean.metaBean().metaPropertyCount(); } @Override public Iterator>> iterator() { final Iterator> it = bean.metaBean().metaPropertyMap().values().iterator(); return new Iterator>>() { @Override public boolean hasNext() { return it.hasNext(); } @Override public Entry> next() { MetaProperty meta = it.next(); return new SimpleImmutableEntry<>(meta.name(), BasicProperty.of(bean, meta)); } @Override public void remove() { throw new UnsupportedOperationException("Unmodifiable"); } }; } }; } //----------------------------------------------------------------------- /** * Flattens the contents of this property map to a {@code Map}. *

* The returned map will contain all the properties from the bean with their actual values. * * @return the unmodifiable map of property name to value, not null */ public Map flatten() { return JodaBeanUtils.flatten(bean); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy