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

org.apache.sling.api.resource.ValueMap Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF 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.apache.sling.api.resource;

import java.util.Collections;
import java.util.Map;

import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.NotNull;

import org.apache.sling.api.wrappers.ValueMapDecorator;

import org.osgi.annotation.versioning.ConsumerType;

/**
 * The ValueMap is an easy way to access properties of a resource.
 * With resources you can use {@link Resource#getValueMap()} to obtain the
 * value map of a resource. The various getter methods can be used to get the
 * properties of the resource.
 * 

* In addition a value map returned by a resource supports getting of deep * values, like get("content/title") which is equivalent to call * getChild("content") on the resource, get the value map of that resource * and call get("title") - but without requiring to do all the checks. * Only the following methods support deep reads: {@link #get(Object)}, * {@link #get(String, Class)}, {@link #get(String, Object)} and * {@link #containsKey(Object)}. * * A ValueMap should be immutable. */ @ConsumerType public interface ValueMap extends Map { /** * Empty immutable value map. */ final ValueMap EMPTY = new ValueMapDecorator( Collections. emptyMap()); /** * Get a named property and convert it into the given type. * This method does not support conversion into a primitive type or an * array of a primitive type. It should return null in this * case. * * @param name The name of the property * @param type The class of the type * @param The class of the type * @return Return named value converted to type T or null if * non existing or can't be converted. */ @Nullable T get(@NotNull String name, @NotNull Class type); /** * Get a named property and convert it into the given type. * This method does not support conversion into a primitive type or an * array of a primitive type. It should return the default value in this * case. *

* Implementation hint: In the past it was allowed to call this with a 2nd parameter being {@code null}. * Therefore all implementations should internally call {@link #get(Object)} when the 2nd parameter * has value {@code null}. * * @param name The name of the property * @param The expected type * @param defaultValue The default value to use if the named property does * not exist or cannot be converted to the requested type. The * default value is also used to define the type to convert the * value to. Must not be {@code null}. If you want to return {@code null} by default * rather rely on {@link #get(String, Class)}. * @return Return named value converted to type T or the default value if * non existing or can't be converted. */ @NotNull T get(@NotNull String name, @NotNull T defaultValue); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy