org.bitbucket.gkutiel.at.At Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of at-core Show documentation
Show all versions of at-core Show documentation
A parser and renderer engine for the at syntax
package org.bitbucket.gkutiel.at;
class At {
static At at(final String type, final String args) {
return new At(type, args);
}
final String type;
final String args;
At(final String type, final String args) {
this.type = type;
this.args = args;
}
}