Uses of Class
com._4point.testing.matchers.aem.Pdf

Packages that use Pdf
  • Uses of Pdf in com._4point.testing.matchers.aem

    Methods in com._4point.testing.matchers.aem that return Pdf
    Modifier and Type
    Method
    Description
    static Pdf
    Pdf.from(byte[] docBytes)
    Static factory that creates a Pdf object from a byte array.
    static Pdf
    Pdf.from(InputStream docStream)
    Static factory that creates a Pdf object from an InputStream.
    static Pdf
    Pdf.from(Path docPath)
    Static factory that creates a Pdf object from a file on the file system.
    Methods in com._4point.testing.matchers.aem that return types with arguments of type Pdf
    Modifier and Type
    Method
    Description
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.hasAtLeastTheseEmbeddedFonts(String... fontNames)
    Creates a Matcher that matches a list of names against the list of embedded fonts in the PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.hasAtLeastTheseFonts(String... fontNames)
    Creates a Matcher that matches a list of names against the list of fonts in the PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.HasEmbeddedFonts(org.hamcrest.Matcher<Iterable<? super String>> matcher)
    Creates a Matcher that tests the list of names of embedded fonts in the PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.hasExactlyTheseEmbeddedFonts(String... fontNames)
    Creates a Matcher that matches a list of names against the list of embedded fonts in the PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.hasExactlyTheseFonts(String... fontNames)
    Creates a Matcher that matches a list of names against the list of fonts in the PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.hasFonts(org.hamcrest.Matcher<Iterable<? super String>> matcher)
    Creates a Matcher that tests the list of font names in the PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.hasXfa(boolean hasXfa)
    Creates a Matcher that tests whether a PDF is an XFA PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.isDynamic()
    Creates a Matcher that validates that a PDF is a dynamic PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.isInteractive()
    Creates a Matcher that validates that a PDF is interactive.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.isNonInteractive()
    Creates a Matcher that validates that a PDF is non-interactive.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.isStatic()
    Creates a Matcher that validates that a PDF is a static PDF.
    static org.hamcrest.TypeSafeDiagnosingMatcher<Pdf>
    PdfMatchers.isTagged()
    Creates a Matcher that validates that a PDF is a tagged PDF.
  • Uses of Pdf in com._4point.testing.matchers.jaxrs

    Modifier and Type
    Method
    Description
    static Pdf
    ResponseMatchers.expectingPdf(jakarta.ws.rs.core.Response response)
    Performs a series of checks on the Response object to validate that it is a response containing a PDF and then returns a Pdf object for further validation.