com.badlogic.gdx.maps.MapProperties Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* 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 com.badlogic.gdx.maps;
import java.util.Iterator;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.math.Vector2;
import com.badlogic.gdx.utils.ObjectMap;
/** @brief Set of string indexed values representing map elements' properties, allowing to retrieve, modify and add properties to
* the set. */
public class MapProperties {
private ObjectMap properties;
/** Creates an empty properties set */
public MapProperties () {
properties = new ObjectMap();
}
/** @param key property name
* @return true if and only if the property exists */
public boolean containsKey (String key) {
return properties.containsKey(key);
}
/** @param key property name
* @return the value for that property if it exists, otherwise, null */
public Object get (String key) {
return properties.get(key);
}
/** Returns the object for the given key, casting it to clazz.
* @param key the key of the object
* @param clazz the class of the object
* @return the object or null if the object is not in the map
* @throws ClassCastException if the object with the given key is not of type clazz */
public T get (String key, Class clazz) {
return (T)get(key);
}
/** Returns the object for the given key, casting it to clazz.
* @param key the key of the object
* @param defaultValue the default value
* @param clazz the class of the object
* @return the object or the defaultValue if the object is not in the map
* @throws ClassCastException if the object with the given key is not of type clazz */
public T get (String key, T defaultValue, Class clazz) {
Object object = get(key);
return object == null ? defaultValue : (T)object;
}
/** @param key property name
* @param value value to be inserted or modified (if it already existed) */
public void put (String key, Object value) {
properties.put(key, value);
}
/** @param properties set of properties to be added */
public void putAll (MapProperties properties) {
this.properties.putAll(properties.properties);
}
/** @param key property name to be removed */
public void remove (String key) {
properties.remove(key);
}
/** Removes all properties */
public void clear () {
properties.clear();
}
/** @return iterator for the property names */
public Iterator getKeys () {
return properties.keys();
}
/** @return iterator to properties' values */
public Iterator
© 2015 - 2025 Weber Informatics LLC | Privacy Policy