PDFIntentValue.java 575 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.internal.pdftoolkit.core.types.ASName
 */
package com.adobe.internal.pdftoolkit.pdf.interactive.annotation;

import com.adobe.internal.pdftoolkit.core.types.ASName;

public abstract class PDFIntentValue {
    private final ASName intentStr;

    protected PDFIntentValue(ASName intentStr) {
        this.intentStr = intentStr;
    }

    ASName getValue() {
        return this.intentStr;
    }

    public String toString() {
        return this.getValue().asString(true);
    }
}