Vocable.java 821 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xmp.schema.model.rules;

import java.io.Serializable;

public class Vocable
implements Serializable {
    private static final long serialVersionUID = 1;
    private Object xmpValue;
    private String label;

    public Vocable(Object xmpValue, String label) {
        this.xmpValue = xmpValue;
        this.label = label;
    }

    public Object getXmpValue() {
        return this.xmpValue;
    }

    public String getLabel() {
        return this.label;
    }

    /*
     * This class specifies class file version 49.0 but uses Java 6 signatures.  Assumed Java 6.
     */
    public static enum Type {
        TEXT,
        INTEGER,
        REAL,
        BOOLEAN,
        DATE,
        ARRAY_OF_INTEGER;
        

        private Type() {
        }
    }

}