microsoft.exchange.webservices.data.GenericPropertyDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exchange-ws-api Show documentation
Show all versions of exchange-ws-api Show documentation
The source came from http://archive.msdn.microsoft.com/ewsjavaapi
Support for Maven has been added.
/**************************************************************************
* copyright file="GenericPropertyDefinition.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the GenericPropertyDefinition.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
import java.text.ParseException;
import java.util.EnumSet;
/**
* Represents generic property definition.
*
* @param
* the generic type
* @Param T Property type.
*/
class GenericPropertyDefinition extends
TypedPropertyDefinition {
private Class instance;
/**
* Initializes a new instance of the "GenericPropertyDefinition<T>"
* class.
*
* @param xmlElementName
* Name of the XML element.
* @param uri
* The URI.
* @param version
* The version.
*/
protected GenericPropertyDefinition(Class cls,
String xmlElementName, String uri,
ExchangeVersion version) {
super(xmlElementName, uri, version);
this.instance = cls;
}
/**
* Initializes a new instance of the "GenericPropertyDefinition<T>"
* class.
*
* @param xmlElementName
* Name of the XML element.
* @param uri
* The URI.
* @param flags
* The flags.
* @param version
* The version.
*/
protected GenericPropertyDefinition(Class cls,
String xmlElementName, String uri,
EnumSet flags, ExchangeVersion version) {
super(xmlElementName, uri, flags, version);
this.instance = cls;
}
/**
* Initializes a new instance of the GenericPropertyDefinition class.
* @param xmlElementName Name of the XML element.
* @param uri The URI.
* @param flags The flags.
* @param version The version.
* @param isNullable if set to true, property value is nullable.
*/
protected GenericPropertyDefinition(
Class cls,
String xmlElementName,
String uri,
EnumSet flags,
ExchangeVersion version,
boolean isNullable) {
super(xmlElementName,uri,flags,version,isNullable);
this.instance = cls;
}
/**
* Parses the specified value.
*
* @param value
* the value
* @return the object
* @throws ParseException
* @throws IllegalAccessException
* @throws InstantiationException
* @throws ParseException
* @throws IllegalAccessException
* @throws InstantiationException
* @Param value The value
* @returns Double value from parsed value.
*/
@Override
protected Object parse(String value) throws InstantiationException,
IllegalAccessException, ParseException {
return EwsUtilities.parse(instance,value);
}
/**
* Gets the property type.
*/
@Override
public Class getType() {
return instance;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy