
org.verapdf.gf.model.impl.arlington.GFA3DBackground Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation-model-arlington Show documentation
Show all versions of validation-model-arlington Show documentation
veraPDF PDF/A validation model implementation based on PDF parser.
The newest version!
/**
* This file is part of veraPDF Validation, a module of the veraPDF project.
* Copyright (c) 2015, veraPDF Consortium
* All rights reserved.
*
* veraPDF Validation is free software: you can redistribute it and/or modify
* it under the terms of either:
*
* The GNU General public license GPLv3+.
* You should have received a copy of the GNU General Public License
* along with veraPDF Validation as the LICENSE.GPL file in the root of the source
* tree. If not, see http://www.gnu.org/licenses/ or
* https://www.gnu.org/licenses/gpl-3.0.en.html.
*
* The Mozilla Public License MPLv2+.
* You should have received a copy of the Mozilla Public License along with
* veraPDF Validation as the LICENSE.MPL file in the root of the source tree.
* If a copy of the MPL was not distributed with this file, you can obtain one at
* http://mozilla.org/MPL/2.0/.
*/
package org.verapdf.gf.model.impl.arlington;
import org.verapdf.cos.*;
import org.verapdf.model.alayer.*;
import org.verapdf.gf.model.impl.containers.StaticContainers;
import org.verapdf.tools.StaticResources;
import java.util.*;
import org.verapdf.pd.PDNameTreeNode;
import org.verapdf.as.ASAtom;
import java.util.stream.Collectors;
import org.verapdf.pd.structure.PDNumberTreeNode;
public class GFA3DBackground extends GFAObject implements A3DBackground {
public GFA3DBackground(COSBase baseObject, COSBase parentObject, String keyName) {
super(baseObject, parentObject, keyName, "A3DBackground");
}
@Override
public List extends org.verapdf.model.baselayer.Object> getLinkedObjects(String link) {
switch (link) {
case "C":
return getC();
default:
return super.getLinkedObjects(link);
}
}
private List getC() {
switch (StaticContainers.getFlavour()) {
case ARLINGTON1_6:
case ARLINGTON1_7:
case ARLINGTON2_0:
return getC1_6();
default:
return Collections.emptyList();
}
}
private List getC1_6() {
COSObject object = getCValue();
if (object == null) {
return Collections.emptyList();
}
if (object.getType() == COSObjType.COS_ARRAY) {
List list = new ArrayList<>(1);
list.add(new GFAArrayOf_3RGBNumbers((COSArray)object.getDirectBase(), this.baseObject, "C"));
return Collections.unmodifiableList(list);
}
return Collections.emptyList();
}
@Override
public Boolean getcontainsC() {
return this.baseObject.knownKey(ASAtom.getASAtom("C"));
}
public COSObject getCValue() {
COSObject object = this.baseObject.getKey(ASAtom.getASAtom("C"));
return object;
}
@Override
public String getCType() {
COSObject C = getCValue();
return getObjectType(C);
}
@Override
public Boolean getCHasTypeArray() {
COSObject C = getCValue();
return getHasTypeArray(C);
}
@Override
public Boolean getcontainsCS() {
return this.baseObject.knownKey(ASAtom.getASAtom("CS"));
}
public COSObject getCSDefaultValue() {
switch (StaticContainers.getFlavour()) {
case ARLINGTON1_6:
case ARLINGTON1_7:
case ARLINGTON2_0:
return COSName.construct("DeviceRGB");
}
return null;
}
public COSObject getCSValue() {
COSObject object = this.baseObject.getKey(ASAtom.getASAtom("CS"));
if (object == null || object.empty()) {
object = getCSDefaultValue();
}
return object;
}
@Override
public String getCSType() {
COSObject CS = getCSValue();
return getObjectType(CS);
}
@Override
public Boolean getCSHasTypeName() {
COSObject CS = getCSValue();
return getHasTypeName(CS);
}
@Override
public String getCSNameValue() {
COSObject CS = getCSValue();
return getNameValue(CS);
}
@Override
public Boolean getcontainsEA() {
return this.baseObject.knownKey(ASAtom.getASAtom("EA"));
}
public COSObject getEADefaultValue() {
switch (StaticContainers.getFlavour()) {
case ARLINGTON1_6:
case ARLINGTON1_7:
case ARLINGTON2_0:
return COSBoolean.construct(false);
}
return null;
}
public COSObject getEAValue() {
COSObject object = this.baseObject.getKey(ASAtom.getASAtom("EA"));
if (object == null || object.empty()) {
object = getEADefaultValue();
}
return object;
}
@Override
public String getEAType() {
COSObject EA = getEAValue();
return getObjectType(EA);
}
@Override
public Boolean getEAHasTypeBoolean() {
COSObject EA = getEAValue();
return getHasTypeBoolean(EA);
}
@Override
public Boolean getcontainsSubtype() {
return this.baseObject.knownKey(ASAtom.getASAtom("Subtype"));
}
public COSObject getSubtypeDefaultValue() {
switch (StaticContainers.getFlavour()) {
case ARLINGTON1_6:
case ARLINGTON1_7:
case ARLINGTON2_0:
return COSName.construct("SC");
}
return null;
}
public COSObject getSubtypeValue() {
COSObject object = this.baseObject.getKey(ASAtom.getASAtom("Subtype"));
if (object == null || object.empty()) {
object = getSubtypeDefaultValue();
}
return object;
}
@Override
public String getSubtypeType() {
COSObject Subtype = getSubtypeValue();
return getObjectType(Subtype);
}
@Override
public Boolean getSubtypeHasTypeName() {
COSObject Subtype = getSubtypeValue();
return getHasTypeName(Subtype);
}
@Override
public String getSubtypeNameValue() {
COSObject Subtype = getSubtypeValue();
return getNameValue(Subtype);
}
@Override
public Boolean getcontainsType() {
return this.baseObject.knownKey(ASAtom.getASAtom("Type"));
}
public COSObject getTypeValue() {
COSObject object = this.baseObject.getKey(ASAtom.getASAtom("Type"));
return object;
}
@Override
public String getTypeType() {
COSObject Type = getTypeValue();
return getObjectType(Type);
}
@Override
public Boolean getTypeHasTypeName() {
COSObject Type = getTypeValue();
return getHasTypeName(Type);
}
@Override
public String getTypeNameValue() {
COSObject Type = getTypeValue();
return getNameValue(Type);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy