fun.mike:flapjack-alpha

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/

Лицензия

Лицензия

Группа

Группа

fun.mike
Идентификатор

Идентификатор

flapjack-alpha
Последняя версия

Последняя версия

0.0.57
Дата

Дата

Тип

Тип

jar
Описание

Описание

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/
Ссылка на сайт

Ссылка на сайт

https://github.com/mike706574/flapjack
Система контроля версий

Система контроля версий

http://github.com/mike706574/flapjack/tree/master

Скачать flapjack-alpha

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/fun.mike/flapjack-alpha/ -->
<dependency>
    <groupId>fun.mike</groupId>
    <artifactId>flapjack-alpha</artifactId>
    <version>0.0.57</version>
</dependency>
// https://jarcasting.com/artifacts/fun.mike/flapjack-alpha/
implementation 'fun.mike:flapjack-alpha:0.0.57'
// https://jarcasting.com/artifacts/fun.mike/flapjack-alpha/
implementation ("fun.mike:flapjack-alpha:0.0.57")
'fun.mike:flapjack-alpha:jar:0.0.57'
<dependency org="fun.mike" name="flapjack-alpha" rev="0.0.57">
  <artifact name="flapjack-alpha" type="jar" />
</dependency>
@Grapes(
@Grab(group='fun.mike', module='flapjack-alpha', version='0.0.57')
)
libraryDependencies += "fun.mike" % "flapjack-alpha" % "0.0.57"
[fun.mike/flapjack-alpha "0.0.57"]

Зависимости

compile (6)

Идентификатор библиотеки Тип Версия
fun.mike : record-alpha jar 0.0.38
com.codepoetics : protonpack jar 1.15
fun.mike : map-support-alpha jar 0.0.16
com.fasterxml.jackson.core : jackson-annotations jar 2.9.8
com.fasterxml.jackson.datatype : jackson-datatype-jdk8 jar 2.9.8
com.fasterxml.jackson.core : jackson-databind jar 2.9.8

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12

Модули Проекта

Данный проект не имеет модулей.

flapjack

Maven Central Javadocs

Flat file parsing and serialization library for Java.

Quick Example

This simple example shows how to parse and serialize a delimited record.

Column foo = Column.string("foo");
Column bar = Column.integer("bar");
List<Column> columns = Arrays.asList(foo, bar);
Format format = DelimitedFormat.builder()
    .withId("baz")
    .withDescription("Baz")
    .withDelimiter(',')
    .unframed()
    .withColumns(columns)
    .build();

Record record = format.parse("bop,1").getValue();
// => {foo=bop, bar=1}

String text = format.serialize(record).getValue();
// => "bop,1"

Resources

Build

CircleCI

Copyright and License

The use and distribution terms for this software are covered by the Eclipse Public License 1.0 which can be found in the file epl-v10.html at the root of this distribution. By using this softwaer in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.

Версии библиотеки

Версия
0.0.57
0.0.56
0.0.55
0.0.54
0.0.53
0.0.52
0.0.51
0.0.50
0.0.49
0.0.48
0.0.47
0.0.46
0.0.45
0.0.44
0.0.43
0.0.42
0.0.41
0.0.39
0.0.38
0.0.37
0.0.36
0.0.35
0.0.34
0.0.33
0.0.32
0.0.30
0.0.29
0.0.27
0.0.26
0.0.25
0.0.24
0.0.21
0.0.20
0.0.19
0.0.18
0.0.17
0.0.16
0.0.15
0.0.14
0.0.13
0.0.12
0.0.10
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1