Edge$.java 1.28 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  scala.None
 *  scala.None$
 *  scala.Option
 *  scala.ScalaObject
 *  scala.Serializable
 *  scala.Some
 *  scala.Tuple4
 *  scala.runtime.AbstractFunction4
 */
package com.adobe.forms.layout;

import com.adobe.forms.layout.Edge;
import com.adobe.forms.layout.Presence;
import com.adobe.forms.layout.StrokeType;
import scala.None;
import scala.Option;
import scala.ScalaObject;
import scala.Serializable;
import scala.Some;
import scala.Tuple4;
import scala.runtime.AbstractFunction4;

public final class Edge$
extends AbstractFunction4
implements ScalaObject,
Serializable {
    public static final Edge$ MODULE$;

    public static {
        new com.adobe.forms.layout.Edge$();
    }

    public final String toString() {
        return "Edge";
    }

    public Option unapply(Edge x$0) {
        return x$0 == null ? None..MODULE$ : new Some((Object)new Tuple4(x$0.strokeType(), x$0.thickness(), x$0.color(), (Object)x$0.presence()));
    }

    public Edge apply(Option strokeType, Option thickness, Option color, Presence presence) {
        return new Edge(strokeType, thickness, color, presence);
    }

    public Object readResolve() {
        return MODULE$;
    }

    private Edge$() {
        MODULE$ = this;
    }
}