Coder Social home page Coder Social logo

iata-parser's Introduction

iata-parser

Description

Implements a parser for the boarding pass format described in IATA Resolution 792 - Version 5.

This specification (in conjunction with others) can be downloaded here.

Usage

public class Main
{
    public static void main(String[] args) throws Exception
    {
        // Create code
        IataCode code = new Parser().parse("M1DESMARAIS/LUC       EABC123 YULFRAAC 0834 226F001A0025 100");
        
        // Print code
        try (OutputStreamWriter writer = new OutputStreamWriter(System.out))
        {
            IataCodes.walk(code, new Printer(new SpecificationFormatter(), writer));
        }
    }
}

Strict Mode

A parser may be configured to strictly validate the supplied code according to the allowed types & values defined in Resolution 792. When enabled any value outside an allowed range for that element will throw a exception detailing the problem.

To enable "strict mode" do the following:

Parser strictParser = new Parser().strict(); // Returns a new parser with strict mode enabled.

Links

Author

NCR Edinburgh

License

This project is licensed under the Apache v2 license. See the LICENSE file for more info.

iata-parser's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.