All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by parser with all dependencies

Search JAR files by class name

MgntUtils from group com.github.michaelgantman (version 1.7.0.1)

Set of various Utils: stacktrace noise filter, String to/from unicode sequence converter, simple Http client JSON parser/serializer, Silent String parsing to Integer and other numeric types, Parsing String to time intervals with support for time unit suffixes, JSON parser that provides serialization/deserialization of classes to JSON, Version comparator and Version ranges operations, Self-throttling binary reader from Http request, File reader, A utility that automatically initiates a Factory with instances of all classes that implement user provided interface. An infrastructure for writing Scheduled Task classes where time interval for task execution is provided in humanly readable format (such as "9h" for 9 hours)

Group: com.github.michaelgantman Artifact: MgntUtils
Show all versions Show documentation Show source 
 

16 downloads
Artifact MgntUtils
Group com.github.michaelgantman
Version 1.7.0.1
Last update 27. December 2023
Organization not specified
URL https://github.com/michaelgantman/Mgnt
License The MIT License (MIT)
Dependencies amount 7
Dependencies javax.servlet-api, slf4j-api, commons-lang3, jackson-core, jackson-databind, jackson-datatype-jsr310, javax.annotation-api,
There are maybe transitive dependencies!

scala-tptp-parser_2.13 from group io.github.leoprover (version 1.7.1)

scala-tptp-parser is a library for parsing the input languages of the TPTP infrastructure for knowledge representation and reasoning. The package contains a data structure for the abstract syntax tree (AST) of the parsed input as well as the parser for the different language of the TPTP, see http://tptp.org for details. In particular, parser are available for: - THF (TH0/TH1): Monomorphic and polymorphic higher-order logic, - TFF (TF0/TF1): Monomorphic and polymorphic typed first-order logic, including extended TFF (TFX), - FOF: Untyped first-order logic, - TCF: Typed clause-normal form, - CNF: (Untyped) clause-normal form, and - TPI: TPTP Process Instruction language. The parser was initially based on v7.4.0.3 of the TPTP syntax BNF (http://tptp.org/TPTP/SyntaxBNF.html), but is continuously updated to keep track of TPTP language updates.

Group: io.github.leoprover Artifact: scala-tptp-parser_2.13
Show all versions Show documentation Show source 
 

0 downloads
Artifact scala-tptp-parser_2.13
Group io.github.leoprover
Version 1.7.1
Last update 25. March 2023
Organization io.github.leoprover
URL https://github.com/leoprover/scala-tptp-parser
License MIT
Dependencies amount 1
Dependencies scala-library,
There are maybe transitive dependencies!

MathParser.org-mXparser from group org.mariuszgromada.math (version 5.2.1)

mXparser is a super easy, rich, fast and highly flexible math expression parser library (parser and evaluator of mathematical expressions / formulas provided as plain text / string). Software delivers easy to use API for JAVA, Android and C# .NET/MONO (Common Language Specification compliant: F#, Visual Basic, C++/CLI). *** If you find the software useful donation or purchase is something you might consider: https://mathparser.org/donate/ *** Online store: https://payhip.com/INFIMA *** Scalar Scientific Calculator, Charts and Scripts, Scalar Lite: https://play.google.com/store/apps/details?id=org.mathparser.scalar.lite *** Scalar Pro: https://play.google.com/store/apps/details?id=org.mathparser.scalar.pro *** ScalarMath.org: https://scalarmath.org/ *** MathSpace.pl: https://mathspace.pl/ ***

Group: org.mariuszgromada.math Artifact: MathParser.org-mXparser
Show all versions Show documentation Show source 
 

209 downloads
Artifact MathParser.org-mXparser
Group org.mariuszgromada.math
Version 5.2.1
Last update 07. February 2023
Organization MathParser.org
URL https://mathparser.org/
License DUAL LICENSE
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

pdf2dom from group net.sf.cssbox (version 2.0.3)

Pdf2Dom is a PDF parser that converts the documents to a HTML DOM representation. The obtained DOM tree may be then serialized to a HTML file or further processed. The inline CSS definitions contained in the resulting document are used for making the HTML page as similar as possible to the PDF input. A command-line utility for converting the PDF documents to HTML is included in the distribution package. Pdf2Dom may be also used as an independent Java library with a standard DOM interface for your DOM-based applications or as an alternative parser for the CSSBox rendering engine in order to add the PDF processing capability to CSSBox.

Group: net.sf.cssbox Artifact: pdf2dom
Show all versions Show documentation Show source 
 

330 downloads
Artifact pdf2dom
Group net.sf.cssbox
Version 2.0.3
Last update 17. October 2022
Organization not specified
URL http://cssbox.sourceforge.net/pdf2dom
License GNU Lesser General Public License 3.0
Dependencies amount 4
Dependencies pdfbox, FontVerter, commons-io, slf4j-api,
There are maybe transitive dependencies!

suji from group com.github.jikyo (version 0.0.5)

Suji is a converter library from Japanese number notation to numerical value, and from numerical notation to Japanese Kansuji notation. Converter.values(src) to convert from Japanese number notation to numerical value: Japanese number notation can include Kansuji. The String "1つの価格が二兆30万五千十7円になります。" will be converted to two BigDecimal, 1 and 2000000005017. And also, 打率は三割二部五厘です。 will be a 0.325. The return value is a list of Suji Numeral objects. If the input string has no number notation, Suji returns a empty list. The Numeral object has three methods: value(), begin(), and end(): value(): a BigDecimal instance of a numerical value for the number notation. begin(): the begin index (int) of the found number notation at the input string. end(): the end index (int) of the found number notation. Converter.kansujis(src) to convert from numeric notation to Japanese Kansuji notation: The String 20兆30万五千十7円になります。 will be converted to the Kansuji string, 二十兆三十万五千十七. The boolean flag one is interpreted as whether to display the first character 一 or not. The output of Converter.kansujis('1000万', true) will be converted to 一千万, and the output of Converter.kansujis('1000万', false) will be converted to 千万. Note that kansujis does not support numerical notation after the decimal point. If the input string is 32.01, the output will 三十二, not 三十二割一厘. The return value is a list of Kansuji objects. If the input string has no number notation, Suji returns a empty list. The Kansuji object has three methods: value(), begin(), and end(): value(): a String instance of a Kansuji notation. begin(): the begin index (int) of the found number notation at the input string. end(): the end index (int) of the found number notation. Suji is a one-pass parser. That is, Suji parse a source text from the head to the end only once.

Group: com.github.jikyo Artifact: suji
Show all versions Show documentation Show source 
 

0 downloads
Artifact suji
Group com.github.jikyo
Version 0.0.5
Last update 04. September 2020
Organization not specified
URL https://github.com/jikyo/suji4j
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

WSClient from group org.simple4j (version 1.1.2)

This is a simple Web Service Client library to call wide variety of web service behind HTTP. In theory it can support any interface or payload. On the request side, to convert java object to HTTP request components (URL, headers, body), templating is used which allows it to call XML, JSON, SOAP, REST or anyother custom interface. On the response side, it uses pluggable parser and a mapper to only extract the fields that are of interest for the client program. The parser currently supports JSON and XML and returns a collections tree.

Group: org.simple4j Artifact: WSClient
Show all versions Show documentation Show source 
 

6 downloads
Artifact WSClient
Group org.simple4j
Version 1.1.2
Last update 21. November 2019
Organization not specified
URL https://github.com/simple4j/WSClient
License MIT License
Dependencies amount 7
Dependencies commons-beanutils, httpclient, httpcore, slf4j-api, jackson-core, jackson-databind, jackson-annotations,
There are maybe transitive dependencies!

ModelCC from group org.modelcc (version 2015)

ModelCC is a model-based parser generator (a.k.a. compiler compiler) that decouples language specification from language processing, avoiding some of the problems caused by grammar-driven parser generators. ModelCC receives a conceptual model as input, along with constraints that annotate it. It is then able to create a parser for the desired textual language and the generated parser fully automates the instantiation of the language conceptual model. ModelCC also includes a built-in reference resolution mechanism that results in abstract syntax graphs, rather than mere abstract syntax trees.

Group: org.modelcc Artifact: ModelCC
Show documentation Show source 
 

0 downloads
Artifact ModelCC
Group org.modelcc
Version 2015
Last update 19. December 2018
Organization not specified
URL http://www.modelcc.org
License Simplified BSD License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

tagsoup from group com.github.fansu.tagsoup (version 1.0.5)

TagSoup is a SAX-compliant parser written in Java that, instead of parsing well-formed or valid XML, parses HTML as it is found in the wild: poor, nasty and brutish, though quite often far from short. TagSoup is designed for people who have to process this stuff using some semblance of a rational application design. By providing a SAX interface, it allows standard XML tools to be applied to even the worst HTML. TagSoup also includes a command-line processor that reads HTML files and can generate either clean HTML or well-formed XML that is a close approximation to XHTML.

Group: com.github.fansu.tagsoup Artifact: tagsoup
Show all versions Show documentation Show source 
 

1 downloads
Artifact tagsoup
Group com.github.fansu.tagsoup
Version 1.0.5
Last update 07. November 2018
Organization not specified
URL http://home.ccil.org/~cowan/XML/tagsoup/
License Apache License 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

ffmpeg from group com.tagtraum (version 4.0.0)

Downloads and builds FFmpeg libraries for both 32 and 64 bit including the zlib and bzip2 compression libraries. Configuration: ./configure ${ffmpeg.configure}

Group: com.tagtraum Artifact: ffmpeg
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact ffmpeg
Group com.tagtraum
Version 4.0.0
Last update 25. April 2018
Organization FFmpeg.org
URL http://ffmpeg.org/
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

graal-coverage from group fr.lirmm.graphik (version 1.3.1)

Group: fr.lirmm.graphik Artifact: graal-coverage
Show all versions 
 

0 downloads
Artifact graal-coverage
Group fr.lirmm.graphik
Version 1.3.1
Last update 15. March 2018
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies org.jacoco.ant,
There are maybe transitive dependencies!



Page 309 from 316 (items total 3159)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy