com.adobe.internal.xmp.properties.XMPPropertyInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2006 Adobe Systems Incorporated
// All Rights Reserved
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
package com.adobe.internal.xmp.properties;
import com.adobe.internal.xmp.options.PropertyOptions;
/**
* This interface is used to return a property together with its path and namespace.
* It is returned when properties are iterated with the XMPIterator
.
*
* @author Stefan Makswit
* @version $Revision$
* @since 06.07.2006
*/
public interface XMPPropertyInfo extends XMPProperty
{
/**
* @return Returns the namespace of the property
*/
String getNamespace();
/**
* @return Returns the path of the property, but only if returned by the iterator.
*/
String getPath();
/**
* @return Returns the value of the property.
*/
String getValue();
/**
* @return Returns the options of the property.
*/
PropertyOptions getOptions();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy