FileDocCategorySizeDatePackage
ObjectPropertyInfo.javaAPI DocGoogle Facebook API v1.42784Sat Oct 27 16:53:40 BST 2007com.facebook.api.schema

ObjectPropertyInfo

public class ObjectPropertyInfo extends Object

Java class for object_property_info complex type.

The following schema fragment specifies the expected content contained within this class.

<complexType name="object_property_info">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="data_type" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="index_type" type="{http://www.w3.org/2001/XMLSchema}int"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected String
name
protected int
dataType
protected int
indexType
Constructors Summary
Methods Summary
public intgetDataType()
Gets the value of the dataType property.

        return dataType;
    
public intgetIndexType()
Gets the value of the indexType property.

        return indexType;
    
public java.lang.StringgetName()
Gets the value of the name property.

return
possible object is {@link String }

        return name;
    
public voidsetDataType(int value)
Sets the value of the dataType property.

        this.dataType = value;
    
public voidsetIndexType(int value)
Sets the value of the indexType property.

        this.indexType = value;
    
public voidsetName(java.lang.String value)
Sets the value of the name property.

param
value allowed object is {@link String }

        this.name = value;