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

com.google.code.facebookapi.PropertyType Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package com.google.code.facebookapi;

/**
 * Encapsulates the property types used in the DataStore API.
 * 
 * @author david.j.boden
 * @see http://wiki.developers.facebook.com/index.php/Data.defineObjectProperty
 */
public enum PropertyType {
    INTEGER((byte)1),
    STRING((byte)2),
    TEXT_BLOB((byte)3);
    
    private byte value;
    PropertyType(byte value) {
        this.value = value;
    }
    
    public byte getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy