Vocable.java
821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* 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() {
}
}
}