Removed petit from glue layer naming too

This commit is contained in:
Willem Cazander 2025-01-20 14:05:22 +01:00
parent 29f7bbaf8f
commit 8b58f20ad5
101 changed files with 794 additions and 793 deletions

View file

@ -28,20 +28,20 @@ import java.util.Optional;
import org.x4o.fc18.FourCornerUnicodeImport;
/**
* Glue for CLK source lookup support to an cake point.
* Glue for clock speech token support.
*
*
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public interface FourCornerDotPetitColleCLK extends FourCornerX18CakeWord {
public interface FourCornerDotColleCLK extends FourCornerX18CakeWord {
String name();
FourCornerDotPetitColleCLKParler[] clockParlers();
FourCornerDotColleCLKParler[] clockParlers();
default Optional<FourCornerDotPetitColleCLKParler> getLookupOfMerde(FourCornerDotPetitColleCLKParlerEau merde) {
for (FourCornerDotPetitColleCLKParler lookup : clockParlers()) {
default Optional<FourCornerDotColleCLKParler> getLookupOfMerde(FourCornerDotColleCLKParlerEau merde) {
for (FourCornerDotColleCLKParler lookup : clockParlers()) {
if (lookup.parlerMerde() == merde) {
return Optional.of(lookup);
}

View file

@ -23,13 +23,14 @@
package org.x4o.fc18.cake2;
/**
* Clock glue for speak tokens.
*
* @author Willem Cazander
* @version 1.0 Dec 29, 2024
*/
public interface FourCornerDotPetitColleCLKParler {
public interface FourCornerDotColleCLKParler {
FourCornerDotPetitColleCLKParlerEau parlerMerde();
FourCornerDotColleCLKParlerEau parlerMerde();
String parlerToken();
}

View file

@ -30,7 +30,7 @@ import java.util.Objects;
* @author Willem Cazander
* @version 1.0 Dec 29, 2024
*/
public enum FourCornerDotPetitColleCLKParlerEau implements FourCornerDotPetitColleCLKParler {
public enum FourCornerDotColleCLKParlerEau implements FourCornerDotColleCLKParler {
APL,
VHDL,
@ -49,12 +49,12 @@ public enum FourCornerDotPetitColleCLKParlerEau implements FourCornerDotPetitCol
//SQL // TODO: After (~full) SQL is added do cleanup of duplicate/abbr... CLK1K entries
;
private FourCornerDotPetitColleCLKParlerEau() {
private FourCornerDotColleCLKParlerEau() {
}
@Override
public FourCornerDotPetitColleCLKParlerEau parlerMerde() {
return FourCornerDotPetitColleCLKParlerEau.this;
public FourCornerDotColleCLKParlerEau parlerMerde() {
return FourCornerDotColleCLKParlerEau.this;
}
@Override
@ -63,13 +63,13 @@ public enum FourCornerDotPetitColleCLKParlerEau implements FourCornerDotPetitCol
}
/// NOTE this is not really for parsing, after moving to nether DB it gets full version-ed mapping per language and dialect.
public FourCornerDotPetitColleCLKParler parlerJeton(String token) {
public FourCornerDotColleCLKParler parlerJeton(String token) {
Objects.requireNonNull(token);
return new FourCornerDotPetitColleCLKParler() {
return new FourCornerDotColleCLKParler() {
@Override
public FourCornerDotPetitColleCLKParlerEau parlerMerde() {
return FourCornerDotPetitColleCLKParlerEau.this;
public FourCornerDotColleCLKParlerEau parlerMerde() {
return FourCornerDotColleCLKParlerEau.this;
}
@Override

View file

@ -28,7 +28,7 @@ import java.util.List;
///
/// @author Willem Cazander
/// @version 1.0 Jan 18, 2025
public interface FourCornerDotPetitCollePie9 extends FourCornerX06BaklavaPointSequence, FourCornerX08MuffinPointSequence, FourCornerX18CakePointDotIndex, FourCornerX21CodePointDotIndex {
public interface FourCornerDotCollePie9 extends FourCornerX06BaklavaPointSequence, FourCornerX08MuffinPointSequence, FourCornerX18CakePointDotIndex, FourCornerX21CodePointDotIndex {
@Override
default int codePointDotIndex() {

View file

@ -28,7 +28,7 @@ import java.util.List;
///
/// @author Willem Cazander
/// @version 1.0 Jan 19, 2025
public interface FourCornerDotPetitColleZero33Gram extends FourCornerX18CakePointDotIndex {
public interface FourCornerDotColleZero33Gram extends FourCornerX18CakePointDotIndex {
@Override
default List<Integer> cakePointSequence() {

View file

@ -28,7 +28,7 @@ import java.util.List;
///
/// @author Willem Cazander
/// @version 1.0 Jan 19, 2025
public interface FourCornerDotPetitColleZero33P8 extends FourCornerX06BaklavaPointSequence, FourCornerX08MuffinPointSequence, FourCornerX18CakePointDotIndex, FourCornerX21CodePointDotIndex {
public interface FourCornerDotColleZero33P8 extends FourCornerX06BaklavaPointSequence, FourCornerX08MuffinPointSequence, FourCornerX18CakePointDotIndex, FourCornerX21CodePointDotIndex {
@Override
default List<Integer> codePointSequence() {

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,52 +33,52 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 29, 2024
*/
public enum FCDotCLK1KDashA implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashA implements FourCornerDotColleCLK {
ADD(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("+")),
AND(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.ERLANG,
FourCornerDotPetitColleCLKParlerEau.PYTHON),
ATOP(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
AT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("@")),
AXIS(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("["), FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("]")),
ASSIGN(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
ABS(FourCornerDotPetitColleCLKParlerEau.VHDL),
ACCESS(FourCornerDotPetitColleCLKParlerEau.VHDL),
AFTER(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ERLANG),
ALIAS(FourCornerDotPetitColleCLKParlerEau.VHDL),
ALL(FourCornerDotPetitColleCLKParlerEau.VHDL),
ARCHITECTURE(FourCornerDotPetitColleCLKParlerEau.VHDL),
ARRAY(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
ASSERT(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.PYTHON),
ATTRIBUTE(FourCornerDotPetitColleCLKParlerEau.VHDL),
ALIGNAS(FourCornerDotPetitColleCLKParlerEau.CPP),
ALIGNOF(FourCornerDotPetitColleCLKParlerEau.CPP),
AND_EQ(FourCornerDotPetitColleCLKParlerEau.CPP),
ASM(FourCornerDotPetitColleCLKParlerEau.CPP),
ATOMIC_CANCEL(FourCornerDotPetitColleCLKParlerEau.CPP),
ATOMIC_COMMIT(FourCornerDotPetitColleCLKParlerEau.CPP),
ATOMIC_NOEXCEPT(FourCornerDotPetitColleCLKParlerEau.CPP),
AUTO(FourCornerDotPetitColleCLKParlerEau.CPP),
ABSTRACT(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.RUST),
ANDALSO(FourCornerDotPetitColleCLKParlerEau.ERLANG),
AS(FourCornerDotPetitColleCLKParlerEau.RUST, FourCornerDotPetitColleCLKParlerEau.PYTHON),
ASYNC(FourCornerDotPetitColleCLKParlerEau.RUST),
AWAIT(FourCornerDotPetitColleCLKParlerEau.RUST, FourCornerDotPetitColleCLKParlerEau.ES6),
ARGUMENTS(FourCornerDotPetitColleCLKParlerEau.ES6),
ALPHA(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
ADD(FourCornerDotColleCLKParlerEau.APL.parlerJeton("+")),
AND(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.ERLANG,
FourCornerDotColleCLKParlerEau.PYTHON),
ATOP(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
AT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("@")),
AXIS(FourCornerDotColleCLKParlerEau.APL.parlerJeton("["), FourCornerDotColleCLKParlerEau.APL.parlerJeton("]")),
ASSIGN(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
ABS(FourCornerDotColleCLKParlerEau.VHDL),
ACCESS(FourCornerDotColleCLKParlerEau.VHDL),
AFTER(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ERLANG),
ALIAS(FourCornerDotColleCLKParlerEau.VHDL),
ALL(FourCornerDotColleCLKParlerEau.VHDL),
ARCHITECTURE(FourCornerDotColleCLKParlerEau.VHDL),
ARRAY(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ALGOL_60),
ASSERT(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.PYTHON),
ATTRIBUTE(FourCornerDotColleCLKParlerEau.VHDL),
ALIGNAS(FourCornerDotColleCLKParlerEau.CPP),
ALIGNOF(FourCornerDotColleCLKParlerEau.CPP),
AND_EQ(FourCornerDotColleCLKParlerEau.CPP),
ASM(FourCornerDotColleCLKParlerEau.CPP),
ATOMIC_CANCEL(FourCornerDotColleCLKParlerEau.CPP),
ATOMIC_COMMIT(FourCornerDotColleCLKParlerEau.CPP),
ATOMIC_NOEXCEPT(FourCornerDotColleCLKParlerEau.CPP),
AUTO(FourCornerDotColleCLKParlerEau.CPP),
ABSTRACT(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.RUST),
ANDALSO(FourCornerDotColleCLKParlerEau.ERLANG),
AS(FourCornerDotColleCLKParlerEau.RUST, FourCornerDotColleCLKParlerEau.PYTHON),
ASYNC(FourCornerDotColleCLKParlerEau.RUST),
AWAIT(FourCornerDotColleCLKParlerEau.RUST, FourCornerDotColleCLKParlerEau.ES6),
ARGUMENTS(FourCornerDotColleCLKParlerEau.ES6),
ALPHA(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashA(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashA(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,40 +33,40 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 29, 2024
*/
public enum FCDotCLK1KDashB implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashB implements FourCornerDotColleCLK {
BINOMIAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("!")),
BASE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
BIND(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
BESIDE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
BEGIN(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
BLOCK(FourCornerDotPetitColleCLKParlerEau.VHDL),
BODY(FourCornerDotPetitColleCLKParlerEau.VHDL),
BUFFER(FourCornerDotPetitColleCLKParlerEau.VHDL),
BUS(FourCornerDotPetitColleCLKParlerEau.VHDL),
BITAND(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("band")),
BITOR(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("bor")),
BOOL(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA.parlerJeton("boolean"), FourCornerDotPetitColleCLKParlerEau.ALGOL_60.parlerJeton("BOOLEAN")),
BREAK(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON,
FourCornerDotPetitColleCLKParlerEau.ES6),
BYTE(FourCornerDotPetitColleCLKParlerEau.JAVA),
BITNOT(FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("bnot")),
BITXOR(FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("bxor")),
BECOME(FourCornerDotPetitColleCLKParlerEau.RUST),
BOX(FourCornerDotPetitColleCLKParlerEau.RUST),
BINOMIAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("!")),
BASE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
BIND(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
BESIDE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
BEGIN(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ALGOL_60),
BLOCK(FourCornerDotColleCLKParlerEau.VHDL),
BODY(FourCornerDotColleCLKParlerEau.VHDL),
BUFFER(FourCornerDotColleCLKParlerEau.VHDL),
BUS(FourCornerDotColleCLKParlerEau.VHDL),
BITAND(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("band")),
BITOR(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("bor")),
BOOL(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA.parlerJeton("boolean"), FourCornerDotColleCLKParlerEau.ALGOL_60.parlerJeton("BOOLEAN")),
BREAK(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON,
FourCornerDotColleCLKParlerEau.ES6),
BYTE(FourCornerDotColleCLKParlerEau.JAVA),
BITNOT(FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("bnot")),
BITXOR(FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("bxor")),
BECOME(FourCornerDotColleCLKParlerEau.RUST),
BOX(FourCornerDotColleCLKParlerEau.RUST),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashB(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashB(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,67 +33,67 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashC implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashC implements FourCornerDotColleCLK {
CONJUGATE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("+")),
CEILING(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
CIRCULAR(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
CATENATE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(",")),
CATENATE_FIRST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
COMMUTE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
CONSTANT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP.parlerJeton("const"),
FourCornerDotPetitColleCLKParlerEau.JAVA.parlerJeton("const"),
FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("const"),
FourCornerDotPetitColleCLKParlerEau.ES6.parlerJeton("const")
CONJUGATE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("+")),
CEILING(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
CIRCULAR(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
CATENATE(FourCornerDotColleCLKParlerEau.APL.parlerJeton(",")),
CATENATE_FIRST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
COMMUTE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
CONSTANT(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP.parlerJeton("const"),
FourCornerDotColleCLKParlerEau.JAVA.parlerJeton("const"),
FourCornerDotColleCLKParlerEau.RUST.parlerJeton("const"),
FourCornerDotColleCLKParlerEau.ES6.parlerJeton("const")
),
COMMENT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotPetitColleCLKParlerEau.VHDL.parlerJeton("rem"),
FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("rem"),
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
COMMENT_BLOCK_BEGIN(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
COMMENT_BLOCK_END(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
CASE(FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.ERLANG,
FourCornerDotPetitColleCLKParlerEau.ES6),
COMPONENT(FourCornerDotPetitColleCLKParlerEau.VHDL),
CONFIGURATION(FourCornerDotPetitColleCLKParlerEau.VHDL),
CATCH(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ERLANG, FourCornerDotPetitColleCLKParlerEau.ES6),
CHAR(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA),
CHAR8_T(FourCornerDotPetitColleCLKParlerEau.CPP),
CHAR16_T(FourCornerDotPetitColleCLKParlerEau.CPP),
CHAR32_T(FourCornerDotPetitColleCLKParlerEau.CPP),
CLASS(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.PYTHON, FourCornerDotPetitColleCLKParlerEau.ES6),
COMPL(FourCornerDotPetitColleCLKParlerEau.CPP),
CONCEPT(FourCornerDotPetitColleCLKParlerEau.CPP),
CONSTEVAL(FourCornerDotPetitColleCLKParlerEau.CPP),
CONSTEXPR(FourCornerDotPetitColleCLKParlerEau.CPP),
CONSTINIT(FourCornerDotPetitColleCLKParlerEau.CPP),
CONST_CAST(FourCornerDotPetitColleCLKParlerEau.CPP),
CONTINUE(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON,
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
CO_AWAIT(FourCornerDotPetitColleCLKParlerEau.CPP),
CO_RETURN(FourCornerDotPetitColleCLKParlerEau.CPP),
CO_YIELD(FourCornerDotPetitColleCLKParlerEau.CPP),
CONDITION(FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("cond")),
CRATE(FourCornerDotPetitColleCLKParlerEau.RUST),
COMMENT(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotColleCLKParlerEau.VHDL.parlerJeton("rem"),
FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("rem"),
FourCornerDotColleCLKParlerEau.ALGOL_60),
COMMENT_BLOCK_BEGIN(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
COMMENT_BLOCK_END(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
CASE(FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.ERLANG,
FourCornerDotColleCLKParlerEau.ES6),
COMPONENT(FourCornerDotColleCLKParlerEau.VHDL),
CONFIGURATION(FourCornerDotColleCLKParlerEau.VHDL),
CATCH(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ERLANG, FourCornerDotColleCLKParlerEau.ES6),
CHAR(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA),
CHAR8_T(FourCornerDotColleCLKParlerEau.CPP),
CHAR16_T(FourCornerDotColleCLKParlerEau.CPP),
CHAR32_T(FourCornerDotColleCLKParlerEau.CPP),
CLASS(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.PYTHON, FourCornerDotColleCLKParlerEau.ES6),
COMPL(FourCornerDotColleCLKParlerEau.CPP),
CONCEPT(FourCornerDotColleCLKParlerEau.CPP),
CONSTEVAL(FourCornerDotColleCLKParlerEau.CPP),
CONSTEXPR(FourCornerDotColleCLKParlerEau.CPP),
CONSTINIT(FourCornerDotColleCLKParlerEau.CPP),
CONST_CAST(FourCornerDotColleCLKParlerEau.CPP),
CONTINUE(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON,
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
CO_AWAIT(FourCornerDotColleCLKParlerEau.CPP),
CO_RETURN(FourCornerDotColleCLKParlerEau.CPP),
CO_YIELD(FourCornerDotColleCLKParlerEau.CPP),
CONDITION(FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("cond")),
CRATE(FourCornerDotColleCLKParlerEau.RUST),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashC(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashC(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,40 +33,40 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashD implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashD implements FourCornerDotColleCLK {
DIRECTION(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("×")),
DIVIDE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("÷"), FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("div")),
DEAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("?")),
DROP(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
DISCLOSE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
DEPTH(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
DISCONNECT(FourCornerDotPetitColleCLKParlerEau.VHDL),
DOWNTO(FourCornerDotPetitColleCLKParlerEau.VHDL),
DECLTYPE(FourCornerDotPetitColleCLKParlerEau.CPP),
DEFAULT(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
DELETE(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.PYTHON, FourCornerDotPetitColleCLKParlerEau.ES6),
DO(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
DOUBLE(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
DYNAMIC_CAST(FourCornerDotPetitColleCLKParlerEau.CPP),
DYNAMIC(FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("dyn")),
DEFINE(FourCornerDotPetitColleCLKParlerEau.PYTHON.parlerJeton("def")),
DEBUGGER(FourCornerDotPetitColleCLKParlerEau.ES6),
DIRECT(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
DIRECTION(FourCornerDotColleCLKParlerEau.APL.parlerJeton("×")),
DIVIDE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("÷"), FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("div")),
DEAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("?")),
DROP(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
DISCLOSE(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
DEPTH(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
DISCONNECT(FourCornerDotColleCLKParlerEau.VHDL),
DOWNTO(FourCornerDotColleCLKParlerEau.VHDL),
DECLTYPE(FourCornerDotColleCLKParlerEau.CPP),
DEFAULT(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
DELETE(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.PYTHON, FourCornerDotColleCLKParlerEau.ES6),
DO(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
DOUBLE(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ALGOL_60),
DYNAMIC_CAST(FourCornerDotColleCLKParlerEau.CPP),
DYNAMIC(FourCornerDotColleCLKParlerEau.RUST.parlerJeton("dyn")),
DEFINE(FourCornerDotColleCLKParlerEau.PYTHON.parlerJeton("def")),
DEBUGGER(FourCornerDotColleCLKParlerEau.ES6),
DIRECT(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashD(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashD(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,51 +33,51 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashE implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashE implements FourCornerDotColleCLK {
EXPONENTIAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("*")),
EQUAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("=")),
ENCLOSE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
ENCLOSE_PARTITIONED(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
ENLIST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
EXPAND(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("\\")),
EXPAND_FIRST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
EXECUTE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
EACH(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("¨")),
ELSE(FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.ERLANG,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON,
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
ELSIF(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.PYTHON.parlerJeton("elif")),
END(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ERLANG, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
ENTITY(FourCornerDotPetitColleCLKParlerEau.VHDL),
EXIT(FourCornerDotPetitColleCLKParlerEau.VHDL),
ENUM(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.ES6),
EXPLICIT(FourCornerDotPetitColleCLKParlerEau.CPP),
EXPORT(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.ES6),
EXTERN(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.RUST),
EXPORTS(FourCornerDotPetitColleCLKParlerEau.JAVA),
EXTENDS(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
EXCEPT(FourCornerDotPetitColleCLKParlerEau.PYTHON),
EVAL(FourCornerDotPetitColleCLKParlerEau.ES6),
EVENT(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
EXPONENTIAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("*")),
EQUAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("=")),
ENCLOSE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
ENCLOSE_PARTITIONED(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
ENLIST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
EXPAND(FourCornerDotColleCLKParlerEau.APL.parlerJeton("\\")),
EXPAND_FIRST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
EXECUTE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
EACH(FourCornerDotColleCLKParlerEau.APL.parlerJeton("¨")),
ELSE(FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.ERLANG,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON,
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
ELSIF(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.PYTHON.parlerJeton("elif")),
END(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ERLANG, FourCornerDotColleCLKParlerEau.ALGOL_60),
ENTITY(FourCornerDotColleCLKParlerEau.VHDL),
EXIT(FourCornerDotColleCLKParlerEau.VHDL),
ENUM(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.ES6),
EXPLICIT(FourCornerDotColleCLKParlerEau.CPP),
EXPORT(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.ES6),
EXTERN(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.RUST),
EXPORTS(FourCornerDotColleCLKParlerEau.JAVA),
EXTENDS(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
EXCEPT(FourCornerDotColleCLKParlerEau.PYTHON),
EVAL(FourCornerDotColleCLKParlerEau.ES6),
EVENT(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashE(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashE(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,48 +33,48 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashF implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashF implements FourCornerDotColleCLK {
FLOOR(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
FACTORIAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("!")),
FIND(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
FORMAT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
FUNCTION(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("fun"),
FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("fn"),
FourCornerDotPetitColleCLKParlerEau.ES6),
FILE(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
FOR(FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON,
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
FALSE(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON.parlerJeton("False"),
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
FLOAT(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA),
FRIEND(FourCornerDotPetitColleCLKParlerEau.CPP),
FINAL(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.RUST),
FINALLY(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.PYTHON, FourCornerDotPetitColleCLKParlerEau.ES6),
FROM(FourCornerDotPetitColleCLKParlerEau.PYTHON),
FLOOR(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
FACTORIAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("!")),
FIND(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
FORMAT(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.ALGOL_60),
FUNCTION(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("fun"),
FourCornerDotColleCLKParlerEau.RUST.parlerJeton("fn"),
FourCornerDotColleCLKParlerEau.ES6),
FILE(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ALGOL_60),
FOR(FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON,
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
FALSE(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON.parlerJeton("False"),
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
FLOAT(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA),
FRIEND(FourCornerDotColleCLKParlerEau.CPP),
FINAL(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.RUST),
FINALLY(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.PYTHON, FourCornerDotColleCLKParlerEau.ES6),
FROM(FourCornerDotColleCLKParlerEau.PYTHON),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashF(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashF(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,29 +33,29 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashG implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashG implements FourCornerDotColleCLK {
GREATER_OR_EQUAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
GREATER(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(">")),
GRADE_DOWN(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
GRADE_UP(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
GOTO(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA),
GENERATE(FourCornerDotPetitColleCLKParlerEau.VHDL),
GENERIC(FourCornerDotPetitColleCLKParlerEau.VHDL),
GROUP(FourCornerDotPetitColleCLKParlerEau.VHDL),
GUARDED(FourCornerDotPetitColleCLKParlerEau.VHDL),
GLOBAL(FourCornerDotPetitColleCLKParlerEau.PYTHON),
GO(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
GREATER_OR_EQUAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
GREATER(FourCornerDotColleCLKParlerEau.APL.parlerJeton(">")),
GRADE_DOWN(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
GRADE_UP(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
GOTO(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA),
GENERATE(FourCornerDotColleCLKParlerEau.VHDL),
GENERIC(FourCornerDotColleCLKParlerEau.VHDL),
GROUP(FourCornerDotColleCLKParlerEau.VHDL),
GUARDED(FourCornerDotColleCLKParlerEau.VHDL),
GLOBAL(FourCornerDotColleCLKParlerEau.PYTHON),
GO(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashG(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashG(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,8 +22,8 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -32,18 +32,18 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashH implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashH implements FourCornerDotColleCLK {
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashH(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashH(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,44 +33,44 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashI implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashI implements FourCornerDotColleCLK {
INTERSECTION(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
INDEX_GENERATOR(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
INDEX_OF(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
INTERVAL_INDEX(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
INDEX(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
INNER_PRODUCT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(".")),
I_BEAM(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
IF(FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.ERLANG,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON,
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
IMPURE(FourCornerDotPetitColleCLKParlerEau.VHDL),
IN(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.RUST, FourCornerDotPetitColleCLKParlerEau.PYTHON, FourCornerDotPetitColleCLKParlerEau.ES6),
INERTIAL(FourCornerDotPetitColleCLKParlerEau.VHDL),
INOUT(FourCornerDotPetitColleCLKParlerEau.VHDL),
IS(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.PYTHON),
INLINE(FourCornerDotPetitColleCLKParlerEau.CPP),
INT(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ALGOL_60.parlerJeton("INTEGER")),
IMPLEMENTS(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("impl"), FourCornerDotPetitColleCLKParlerEau.ES6),
IMPORT(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.PYTHON, FourCornerDotPetitColleCLKParlerEau.ES6),
INSTANCEOF(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
INTERFACE(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
INTERSECTION(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
INDEX_GENERATOR(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
INDEX_OF(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
INTERVAL_INDEX(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
INDEX(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
INNER_PRODUCT(FourCornerDotColleCLKParlerEau.APL.parlerJeton(".")),
I_BEAM(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
IF(FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.ERLANG,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON,
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
IMPURE(FourCornerDotColleCLKParlerEau.VHDL),
IN(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.RUST, FourCornerDotColleCLKParlerEau.PYTHON, FourCornerDotColleCLKParlerEau.ES6),
INERTIAL(FourCornerDotColleCLKParlerEau.VHDL),
INOUT(FourCornerDotColleCLKParlerEau.VHDL),
IS(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.PYTHON),
INLINE(FourCornerDotColleCLKParlerEau.CPP),
INT(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ALGOL_60.parlerJeton("INTEGER")),
IMPLEMENTS(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.RUST.parlerJeton("impl"), FourCornerDotColleCLKParlerEau.ES6),
IMPORT(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.PYTHON, FourCornerDotColleCLKParlerEau.ES6),
INSTANCEOF(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
INTERFACE(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashI(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashI(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,8 +22,8 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -32,18 +32,18 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashJ implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashJ implements FourCornerDotColleCLK {
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashJ(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashJ(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,19 +33,19 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashK implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashK implements FourCornerDotColleCLK {
KEY(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
KEY(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashK(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashK(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,32 +33,32 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashL implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashL implements FourCornerDotColleCLK {
LOGARITHM_NATURAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
LOGARITHM(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
LESS(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("<")),
LESS_OR_EQUAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
LEFT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
LABEL(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
LIBRARY(FourCornerDotPetitColleCLKParlerEau.VHDL),
LINKAGE(FourCornerDotPetitColleCLKParlerEau.VHDL),
LITERAL(FourCornerDotPetitColleCLKParlerEau.VHDL),
LOOP(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.RUST),
LONG(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
LET(FourCornerDotPetitColleCLKParlerEau.ERLANG, FourCornerDotPetitColleCLKParlerEau.RUST, FourCornerDotPetitColleCLKParlerEau.ES6),
LAMBDA(FourCornerDotPetitColleCLKParlerEau.PYTHON),
LIST(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
LOGARITHM_NATURAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
LOGARITHM(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
LESS(FourCornerDotColleCLKParlerEau.APL.parlerJeton("<")),
LESS_OR_EQUAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
LEFT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
LABEL(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ALGOL_60),
LIBRARY(FourCornerDotColleCLKParlerEau.VHDL),
LINKAGE(FourCornerDotColleCLKParlerEau.VHDL),
LITERAL(FourCornerDotColleCLKParlerEau.VHDL),
LOOP(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.RUST),
LONG(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ALGOL_60),
LET(FourCornerDotColleCLKParlerEau.ERLANG, FourCornerDotColleCLKParlerEau.RUST, FourCornerDotColleCLKParlerEau.ES6),
LAMBDA(FourCornerDotColleCLKParlerEau.PYTHON),
LIST(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashL(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashL(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,36 +33,36 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashM implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashM implements FourCornerDotColleCLK {
MAGNITUDE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("|")),
MINIMUM(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
MAXIMUM(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
MEMBERSHIP(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
MATCH(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.RUST),
MATCH_NOT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
MATRIX_INVERSE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
MATRIX_DIVIDE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
MATERIALISE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
NEGATIVE_NUMBER(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("¯")),
MAP(FourCornerDotPetitColleCLKParlerEau.VHDL),
MOD(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.RUST),
MUTABLE(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("mut")),
MODULE(FourCornerDotPetitColleCLKParlerEau.JAVA),
MAYBE(FourCornerDotPetitColleCLKParlerEau.ERLANG),
MOVE(FourCornerDotPetitColleCLKParlerEau.RUST),
MACRO(FourCornerDotPetitColleCLKParlerEau.RUST),
MACRO_RULES(FourCornerDotPetitColleCLKParlerEau.RUST),
MAGNITUDE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("|")),
MINIMUM(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
MAXIMUM(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
MEMBERSHIP(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
MATCH(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.RUST),
MATCH_NOT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
MATRIX_INVERSE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
MATRIX_DIVIDE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
MATERIALISE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
NEGATIVE_NUMBER(FourCornerDotColleCLKParlerEau.APL.parlerJeton("¯")),
MAP(FourCornerDotColleCLKParlerEau.VHDL),
MOD(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.RUST),
MUTABLE(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.RUST.parlerJeton("mut")),
MODULE(FourCornerDotColleCLKParlerEau.JAVA),
MAYBE(FourCornerDotColleCLKParlerEau.ERLANG),
MOVE(FourCornerDotColleCLKParlerEau.RUST),
MACRO(FourCornerDotColleCLKParlerEau.RUST),
MACRO_RULES(FourCornerDotColleCLKParlerEau.RUST),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashM(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashM(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,38 +33,38 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashN implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashN implements FourCornerDotColleCLK {
NEGATE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("-")),
NOT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("~"),
FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.ERLANG,
FourCornerDotPetitColleCLKParlerEau.PYTHON),
NAND(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.VHDL),
NOR(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.VHDL),
NOT_EQUAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.CPP.parlerJeton("not_eq")),
NEST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
NOT_MATCH(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
NEW(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
NEXT(FourCornerDotPetitColleCLKParlerEau.VHDL),
NULL(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
NAMESPACE(FourCornerDotPetitColleCLKParlerEau.CPP),
NOEXCEPT(FourCornerDotPetitColleCLKParlerEau.CPP),
NULLPTR(FourCornerDotPetitColleCLKParlerEau.CPP),
NATIVE(FourCornerDotPetitColleCLKParlerEau.JAVA),
NONE(FourCornerDotPetitColleCLKParlerEau.PYTHON),
NONLOCAL(FourCornerDotPetitColleCLKParlerEau.PYTHON),
NEGATE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("-")),
NOT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("~"),
FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.ERLANG,
FourCornerDotColleCLKParlerEau.PYTHON),
NAND(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.VHDL),
NOR(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.VHDL),
NOT_EQUAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.CPP.parlerJeton("not_eq")),
NEST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
NOT_MATCH(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
NEW(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
NEXT(FourCornerDotColleCLKParlerEau.VHDL),
NULL(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
NAMESPACE(FourCornerDotColleCLKParlerEau.CPP),
NOEXCEPT(FourCornerDotColleCLKParlerEau.CPP),
NULLPTR(FourCornerDotColleCLKParlerEau.CPP),
NATIVE(FourCornerDotColleCLKParlerEau.JAVA),
NONE(FourCornerDotColleCLKParlerEau.PYTHON),
NONLOCAL(FourCornerDotColleCLKParlerEau.PYTHON),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashN(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashN(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,35 +33,35 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashO implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashO implements FourCornerDotColleCLK {
OR(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.ERLANG,
FourCornerDotPetitColleCLKParlerEau.PYTHON),
OUTER_PRODUCT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("∘.")),
OVER(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
OF(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ERLANG),
ON(FourCornerDotPetitColleCLKParlerEau.VHDL),
OPEN(FourCornerDotPetitColleCLKParlerEau.VHDL),
OTHERS(FourCornerDotPetitColleCLKParlerEau.VHDL),
OUT(FourCornerDotPetitColleCLKParlerEau.VHDL),
OPERATOR(FourCornerDotPetitColleCLKParlerEau.CPP),
OR_EQ(FourCornerDotPetitColleCLKParlerEau.CPP),
ORELSE(FourCornerDotPetitColleCLKParlerEau.ERLANG),
OVERRIDE(FourCornerDotPetitColleCLKParlerEau.RUST),
OWN(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
OR(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""),
FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.ERLANG,
FourCornerDotColleCLKParlerEau.PYTHON),
OUTER_PRODUCT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("∘.")),
OVER(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
OF(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ERLANG),
ON(FourCornerDotColleCLKParlerEau.VHDL),
OPEN(FourCornerDotColleCLKParlerEau.VHDL),
OTHERS(FourCornerDotColleCLKParlerEau.VHDL),
OUT(FourCornerDotColleCLKParlerEau.VHDL),
OPERATOR(FourCornerDotColleCLKParlerEau.CPP),
OR_EQ(FourCornerDotColleCLKParlerEau.CPP),
ORELSE(FourCornerDotColleCLKParlerEau.ERLANG),
OVERRIDE(FourCornerDotColleCLKParlerEau.RUST),
OWN(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashO(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashO(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,33 +33,33 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashP implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashP implements FourCornerDotColleCLK {
POWER(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("*"), FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
PI_TIMES(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
PARTITION(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
PICK(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
PACKAGE(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
PORT(FourCornerDotPetitColleCLKParlerEau.VHDL),
POSTPONED(FourCornerDotPetitColleCLKParlerEau.VHDL),
PROCEDURE(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
PROCESS(FourCornerDotPetitColleCLKParlerEau.VHDL),
PURE(FourCornerDotPetitColleCLKParlerEau.VHDL),
PRIVATE(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("priv"), FourCornerDotPetitColleCLKParlerEau.ES6),
PROTECTED(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
PUBLIC(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("pub"), FourCornerDotPetitColleCLKParlerEau.ES6),
PASS(FourCornerDotPetitColleCLKParlerEau.PYTHON),
POINTER(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
POWER(FourCornerDotColleCLKParlerEau.APL.parlerJeton("*"), FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
PI_TIMES(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
PARTITION(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
PICK(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
PACKAGE(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
PORT(FourCornerDotColleCLKParlerEau.VHDL),
POSTPONED(FourCornerDotColleCLKParlerEau.VHDL),
PROCEDURE(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ALGOL_60),
PROCESS(FourCornerDotColleCLKParlerEau.VHDL),
PURE(FourCornerDotColleCLKParlerEau.VHDL),
PRIVATE(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.RUST.parlerJeton("priv"), FourCornerDotColleCLKParlerEau.ES6),
PROTECTED(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
PUBLIC(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.RUST.parlerJeton("pub"), FourCornerDotColleCLKParlerEau.ES6),
PASS(FourCornerDotColleCLKParlerEau.PYTHON),
POINTER(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashP(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashP(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,8 +22,8 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -32,18 +32,18 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashQ implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashQ implements FourCornerDotColleCLK {
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashQ(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashQ(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,54 +33,54 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashR implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashR implements FourCornerDotColleCLK {
RECIPROCAL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("÷")),
RESIDUE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("|")),
ROLL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("?")),
RESHAPE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
RAVEL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(",")),
REVERSE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
ROTATE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
REVERSE_FIRST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
ROTATE_FIRST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
REPLICATE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("/")),
REPLICATE_FIRST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
RIGHT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
REPRESENT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
REDUCTION(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("/")),
REDUCTION_FIRST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
RANK(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
RANGE(FourCornerDotPetitColleCLKParlerEau.VHDL),
RECORD(FourCornerDotPetitColleCLKParlerEau.VHDL),
REGISTER(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.CPP),
REJECT(FourCornerDotPetitColleCLKParlerEau.VHDL),
REPORT(FourCornerDotPetitColleCLKParlerEau.VHDL),
RETURN(FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON,
FourCornerDotPetitColleCLKParlerEau.ES6),
ROL(FourCornerDotPetitColleCLKParlerEau.VHDL),
ROR(FourCornerDotPetitColleCLKParlerEau.VHDL),
REFLEXPR(FourCornerDotPetitColleCLKParlerEau.CPP),
REINTERPRET_CAST(FourCornerDotPetitColleCLKParlerEau.CPP),
REQUIRES(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA),
RECEIVE(FourCornerDotPetitColleCLKParlerEau.ERLANG),
REF(FourCornerDotPetitColleCLKParlerEau.RUST),
RAISE(FourCornerDotPetitColleCLKParlerEau.PYTHON),
REAL(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
RECIPROCAL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("÷")),
RESIDUE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("|")),
ROLL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("?")),
RESHAPE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
RAVEL(FourCornerDotColleCLKParlerEau.APL.parlerJeton(",")),
REVERSE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
ROTATE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
REVERSE_FIRST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
ROTATE_FIRST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
REPLICATE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("/")),
REPLICATE_FIRST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
RIGHT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
REPRESENT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
REDUCTION(FourCornerDotColleCLKParlerEau.APL.parlerJeton("/")),
REDUCTION_FIRST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
RANK(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
RANGE(FourCornerDotColleCLKParlerEau.VHDL),
RECORD(FourCornerDotColleCLKParlerEau.VHDL),
REGISTER(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.CPP),
REJECT(FourCornerDotColleCLKParlerEau.VHDL),
REPORT(FourCornerDotColleCLKParlerEau.VHDL),
RETURN(FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON,
FourCornerDotColleCLKParlerEau.ES6),
ROL(FourCornerDotColleCLKParlerEau.VHDL),
ROR(FourCornerDotColleCLKParlerEau.VHDL),
REFLEXPR(FourCornerDotColleCLKParlerEau.CPP),
REINTERPRET_CAST(FourCornerDotColleCLKParlerEau.CPP),
REQUIRES(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA),
RECEIVE(FourCornerDotColleCLKParlerEau.ERLANG),
REF(FourCornerDotColleCLKParlerEau.RUST),
RAISE(FourCornerDotColleCLKParlerEau.PYTHON),
REAL(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashR(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashR(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,52 +33,52 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashS implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashS implements FourCornerDotColleCLK {
SUBSTRACT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("-")),
SHAPE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
SPLIT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
SAME(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
SCAN(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("\\")),
SCAN_FIRST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
STENCIL(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
SPAWN(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("&")),
SELECT(FourCornerDotPetitColleCLKParlerEau.VHDL),
SEVERITY(FourCornerDotPetitColleCLKParlerEau.VHDL),
SIGNAL(FourCornerDotPetitColleCLKParlerEau.VHDL),
SHARED(FourCornerDotPetitColleCLKParlerEau.VHDL),
SLA(FourCornerDotPetitColleCLKParlerEau.VHDL),
SLL(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("bsl")),
SRA(FourCornerDotPetitColleCLKParlerEau.VHDL),
SRL(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ERLANG.parlerJeton("bsr")),
SUBTYPE(FourCornerDotPetitColleCLKParlerEau.VHDL),
SHORT(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA),
SIGNED(FourCornerDotPetitColleCLKParlerEau.CPP),
SIZEOF(FourCornerDotPetitColleCLKParlerEau.CPP),
STATIC(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.RUST, FourCornerDotPetitColleCLKParlerEau.ES6),
STATIC_ASSERT(FourCornerDotPetitColleCLKParlerEau.CPP),
STATIC_CAST(FourCornerDotPetitColleCLKParlerEau.CPP),
STRUCT(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.RUST),
SWITCH(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
SYNCHRONIZED(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA),
STRICTFP(FourCornerDotPetitColleCLKParlerEau.JAVA),
SUPER(FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.RUST, FourCornerDotPetitColleCLKParlerEau.ES6),
STATIC_LIFE(FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("'static")),
SAFE(FourCornerDotPetitColleCLKParlerEau.RUST),
STEP(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
SUBSTRACT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("-")),
SHAPE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
SPLIT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
SAME(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
SCAN(FourCornerDotColleCLKParlerEau.APL.parlerJeton("\\")),
SCAN_FIRST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
STENCIL(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
SPAWN(FourCornerDotColleCLKParlerEau.APL.parlerJeton("&")),
SELECT(FourCornerDotColleCLKParlerEau.VHDL),
SEVERITY(FourCornerDotColleCLKParlerEau.VHDL),
SIGNAL(FourCornerDotColleCLKParlerEau.VHDL),
SHARED(FourCornerDotColleCLKParlerEau.VHDL),
SLA(FourCornerDotColleCLKParlerEau.VHDL),
SLL(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("bsl")),
SRA(FourCornerDotColleCLKParlerEau.VHDL),
SRL(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ERLANG.parlerJeton("bsr")),
SUBTYPE(FourCornerDotColleCLKParlerEau.VHDL),
SHORT(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA),
SIGNED(FourCornerDotColleCLKParlerEau.CPP),
SIZEOF(FourCornerDotColleCLKParlerEau.CPP),
STATIC(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.RUST, FourCornerDotColleCLKParlerEau.ES6),
STATIC_ASSERT(FourCornerDotColleCLKParlerEau.CPP),
STATIC_CAST(FourCornerDotColleCLKParlerEau.CPP),
STRUCT(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.RUST),
SWITCH(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
SYNCHRONIZED(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA),
STRICTFP(FourCornerDotColleCLKParlerEau.JAVA),
SUPER(FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.RUST, FourCornerDotColleCLKParlerEau.ES6),
STATIC_LIFE(FourCornerDotColleCLKParlerEau.RUST.parlerJeton("'static")),
SAFE(FourCornerDotColleCLKParlerEau.RUST),
STEP(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashS(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashS(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,57 +33,57 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashT implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashT implements FourCornerDotColleCLK {
TIMES(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("×")),
TABLE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
TRANSPOSE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
TAKE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
TALLY(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
THEN(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
TO(FourCornerDotPetitColleCLKParlerEau.VHDL),
TRANSPORT(FourCornerDotPetitColleCLKParlerEau.VHDL),
TYPE(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.RUST),
TEMPLATE(FourCornerDotPetitColleCLKParlerEau.CPP),
THIS(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("self"),
FourCornerDotPetitColleCLKParlerEau.PYTHON.parlerJeton("self")
TIMES(FourCornerDotColleCLKParlerEau.APL.parlerJeton("×")),
TABLE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
TRANSPOSE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
TAKE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
TALLY(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
THEN(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ALGOL_60),
TO(FourCornerDotColleCLKParlerEau.VHDL),
TRANSPORT(FourCornerDotColleCLKParlerEau.VHDL),
TYPE(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.RUST),
TEMPLATE(FourCornerDotColleCLKParlerEau.CPP),
THIS(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.RUST.parlerJeton("self"),
FourCornerDotColleCLKParlerEau.PYTHON.parlerJeton("self")
),
THIS_TYPE(FourCornerDotPetitColleCLKParlerEau.RUST.parlerJeton("Self")),
THREAD_LOCAL(FourCornerDotPetitColleCLKParlerEau.CPP),
THROW(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
TRUE(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON.parlerJeton("True"),
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
TRY(FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.ERLANG,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON,
FourCornerDotPetitColleCLKParlerEau.ES6),
TYPEDEF(FourCornerDotPetitColleCLKParlerEau.CPP),
TYPEID(FourCornerDotPetitColleCLKParlerEau.CPP),
TYPENAME(FourCornerDotPetitColleCLKParlerEau.CPP),
THROWS(FourCornerDotPetitColleCLKParlerEau.JAVA),
TRANSIENT(FourCornerDotPetitColleCLKParlerEau.JAVA),
TRAIT(FourCornerDotPetitColleCLKParlerEau.RUST),
TYPEOF(FourCornerDotPetitColleCLKParlerEau.RUST, FourCornerDotPetitColleCLKParlerEau.ES6),
TASK(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
THIS_TYPE(FourCornerDotColleCLKParlerEau.RUST.parlerJeton("Self")),
THREAD_LOCAL(FourCornerDotColleCLKParlerEau.CPP),
THROW(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
TRUE(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON.parlerJeton("True"),
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
TRY(FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.ERLANG,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON,
FourCornerDotColleCLKParlerEau.ES6),
TYPEDEF(FourCornerDotColleCLKParlerEau.CPP),
TYPEID(FourCornerDotColleCLKParlerEau.CPP),
TYPENAME(FourCornerDotColleCLKParlerEau.CPP),
THROWS(FourCornerDotColleCLKParlerEau.JAVA),
TRANSIENT(FourCornerDotColleCLKParlerEau.JAVA),
TRAIT(FourCornerDotColleCLKParlerEau.RUST),
TYPEOF(FourCornerDotColleCLKParlerEau.RUST, FourCornerDotColleCLKParlerEau.ES6),
TASK(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashT(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashT(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,29 +33,29 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashU implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashU implements FourCornerDotColleCLK {
UNIQUE_MASK(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
UNIQUE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
UNION(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.RUST),
UNAFFECTED(FourCornerDotPetitColleCLKParlerEau.VHDL),
UNITS(FourCornerDotPetitColleCLKParlerEau.VHDL),
UNTIL(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
USE(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.RUST),
UNSIGNED(FourCornerDotPetitColleCLKParlerEau.CPP),
USING(FourCornerDotPetitColleCLKParlerEau.CPP),
UNSAFE(FourCornerDotPetitColleCLKParlerEau.RUST),
UNSIZED(FourCornerDotPetitColleCLKParlerEau.RUST),
UNIQUE_MASK(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
UNIQUE(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
UNION(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.RUST),
UNAFFECTED(FourCornerDotColleCLKParlerEau.VHDL),
UNITS(FourCornerDotColleCLKParlerEau.VHDL),
UNTIL(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ALGOL_60),
USE(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.RUST),
UNSIGNED(FourCornerDotColleCLKParlerEau.CPP),
USING(FourCornerDotColleCLKParlerEau.CPP),
UNSAFE(FourCornerDotColleCLKParlerEau.RUST),
UNSIZED(FourCornerDotColleCLKParlerEau.RUST),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashU(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashU(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,26 +33,26 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashV implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashV implements FourCornerDotColleCLK {
VARIANT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
VARIABLE(FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.JAVA.parlerJeton("var"),
FourCornerDotPetitColleCLKParlerEau.ES6.parlerJeton("var")),
VIRTUAL(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.RUST),
VOID(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA, FourCornerDotPetitColleCLKParlerEau.ES6),
VOLATILE(FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.JAVA),
VALUE(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
VARIANT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
VARIABLE(FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.JAVA.parlerJeton("var"),
FourCornerDotColleCLKParlerEau.ES6.parlerJeton("var")),
VIRTUAL(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.RUST),
VOID(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA, FourCornerDotColleCLKParlerEau.ES6),
VOLATILE(FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.JAVA),
VALUE(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashV(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashV(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,33 +33,33 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashW implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashW implements FourCornerDotColleCLK {
WITHOUT(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("~")),
WHERE(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotPetitColleCLKParlerEau.RUST),
WINDOWED_REDUCTION(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("/")),
WINDOWED_REDUCTION_FIRST(FourCornerDotPetitColleCLKParlerEau.APL.parlerJeton("")),
WAIT(FourCornerDotPetitColleCLKParlerEau.VHDL),
WHEN(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.ERLANG),
WHILE(FourCornerDotPetitColleCLKParlerEau.VHDL,
FourCornerDotPetitColleCLKParlerEau.CPP,
FourCornerDotPetitColleCLKParlerEau.JAVA,
FourCornerDotPetitColleCLKParlerEau.RUST,
FourCornerDotPetitColleCLKParlerEau.PYTHON,
FourCornerDotPetitColleCLKParlerEau.ES6,
FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
WITH(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.PYTHON, FourCornerDotPetitColleCLKParlerEau.ES6),
WCHAR_T(FourCornerDotPetitColleCLKParlerEau.CPP),
WITHOUT(FourCornerDotColleCLKParlerEau.APL.parlerJeton("~")),
WHERE(FourCornerDotColleCLKParlerEau.APL.parlerJeton(""), FourCornerDotColleCLKParlerEau.RUST),
WINDOWED_REDUCTION(FourCornerDotColleCLKParlerEau.APL.parlerJeton("/")),
WINDOWED_REDUCTION_FIRST(FourCornerDotColleCLKParlerEau.APL.parlerJeton("")),
WAIT(FourCornerDotColleCLKParlerEau.VHDL),
WHEN(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.ERLANG),
WHILE(FourCornerDotColleCLKParlerEau.VHDL,
FourCornerDotColleCLKParlerEau.CPP,
FourCornerDotColleCLKParlerEau.JAVA,
FourCornerDotColleCLKParlerEau.RUST,
FourCornerDotColleCLKParlerEau.PYTHON,
FourCornerDotColleCLKParlerEau.ES6,
FourCornerDotColleCLKParlerEau.ALGOL_60),
WITH(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.PYTHON, FourCornerDotColleCLKParlerEau.ES6),
WCHAR_T(FourCornerDotColleCLKParlerEau.CPP),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashW(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashW(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,21 +33,21 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashX implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashX implements FourCornerDotColleCLK {
XNOR(FourCornerDotPetitColleCLKParlerEau.VHDL),
XOR(FourCornerDotPetitColleCLKParlerEau.VHDL, FourCornerDotPetitColleCLKParlerEau.CPP, FourCornerDotPetitColleCLKParlerEau.ERLANG),
XOR_EQ(FourCornerDotPetitColleCLKParlerEau.CPP),
XNOR(FourCornerDotColleCLKParlerEau.VHDL),
XOR(FourCornerDotColleCLKParlerEau.VHDL, FourCornerDotColleCLKParlerEau.CPP, FourCornerDotColleCLKParlerEau.ERLANG),
XOR_EQ(FourCornerDotColleCLKParlerEau.CPP),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashX(FourCornerDotPetitColleCLKParler...lookups) {
private FCDotCLK1KDashX(FourCornerDotColleCLKParler...lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,19 +33,19 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashY implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashY implements FourCornerDotColleCLK {
YIELD(FourCornerDotPetitColleCLKParlerEau.RUST, FourCornerDotPetitColleCLKParlerEau.PYTHON, FourCornerDotPetitColleCLKParlerEau.ES6),
YIELD(FourCornerDotColleCLKParlerEau.RUST, FourCornerDotColleCLKParlerEau.PYTHON, FourCornerDotColleCLKParlerEau.ES6),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashY(FourCornerDotPetitColleCLKParler... lookups) {
private FCDotCLK1KDashY(FourCornerDotColleCLKParler... lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -22,9 +22,9 @@
*/
package org.x4o.fc18.cake2.clk1k;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLK;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotPetitColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotColleCLK;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParlerEau;
import org.x4o.fc18.cake2.FourCornerDotColleCLKParler;
import org.x4o.fc18.cake2.FourCornerDotCake;
/**
@ -33,19 +33,19 @@ import org.x4o.fc18.cake2.FourCornerDotCake;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotCLK1KDashZ implements FourCornerDotPetitColleCLK {
public enum FCDotCLK1KDashZ implements FourCornerDotColleCLK {
ZIP(FourCornerDotPetitColleCLKParlerEau.ALGOL_60),
ZIP(FourCornerDotColleCLKParlerEau.ALGOL_60),
;
final private FourCornerDotPetitColleCLKParler[] lookups;
final private FourCornerDotColleCLKParler[] lookups;
private FCDotCLK1KDashZ(FourCornerDotPetitColleCLKParler... lookups) {
private FCDotCLK1KDashZ(FourCornerDotColleCLKParler... lookups) {
this.lookups = lookups;
}
@Override
public FourCornerDotPetitColleCLKParler[] clockParlers() {
public FourCornerDotColleCLKParler[] clockParlers() {
return lookups;
}

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 05, 2025
*/
public enum FCDotPIE9CDash01 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash01 implements FourCornerDotCollePie9 {
VOID(''),
;

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 05, 2025
*/
public enum FCDotPIE9CDash02 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash02 implements FourCornerDotCollePie9 {
MULTIPLY('×'),
DIVIDE('÷'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 05, 2025
*/
public enum FCDotPIE9CDash03 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash03 implements FourCornerDotCollePie9 {
CJK_1('一'),
CJK_2('二'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 05, 2025
*/
public enum FCDotPIE9CDash04 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash04 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 05, 2025
*/
public enum FCDotPIE9CDash05 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash05 implements FourCornerDotCollePie9 {
NXX_01('˥'),
NXX_02('˦'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 05, 2025
*/
public enum FCDotPIE9CDash06 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash06 implements FourCornerDotCollePie9 {
NXX_1('⌽'), // = FROM APL
NXX_2('⊖'), // = FROM APL

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 05, 2025
*/
public enum FCDotPIE9CDash07 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash07 implements FourCornerDotCollePie9 {
CJK_0('零'),
CJK_4('四'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash08 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash08 implements FourCornerDotCollePie9 {
NXX_01('☰'),
NXX_02('☱'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash09 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash09 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -25,7 +25,7 @@ package org.x4o.fc18.cake2.pie9c;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -35,7 +35,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash10 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash10 implements FourCornerDotCollePie9 {
DECIMAL_0('0'),
DECIMAL_1('1'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash11 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash11 implements FourCornerDotCollePie9 {
NXX_01('*'),
NXX_02('⁺'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash12 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash12 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash13 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash13 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash14 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash14 implements FourCornerDotCollePie9 {
NXX_01('⊢'),
NXX_02('⊣'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash15 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash15 implements FourCornerDotCollePie9 {
NXX_01('꜍'),
NXX_02('꜎'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash16 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash16 implements FourCornerDotCollePie9 {
NXX_01('˧','˥','˩'),
NXX_02('˧','˩','˥'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash17 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash17 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash18 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash18 implements FourCornerDotCollePie9 {
NXX_01(0x1D369),
NXX_02(0x1D36A),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash19 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash19 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash20 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash20 implements FourCornerDotCollePie9 {
SUPER_0('⁰'),
SUPER_1('¹'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash21 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash21 implements FourCornerDotCollePie9 {
NXX_01(''),
NXX_02('Ⅱ'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash22 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash22 implements FourCornerDotCollePie9 {
NXX_01('←'),
NXX_02('↑'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash23 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash23 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash24 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash24 implements FourCornerDotCollePie9 {
UBARLOW_ALPHA('α', '\u0332'), // = FROM APL
UBARLOW_BETA('β', '\u0332'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash25 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash25 implements FourCornerDotCollePie9 {
// Lower case greek from MSX KANJI KuTen-632 and KuTen-648

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash26 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash26 implements FourCornerDotCollePie9 {
LOW_A('a'),
LOW_B('b'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 06, 2025
*/
public enum FCDotPIE9CDash27 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9CDash27 implements FourCornerDotCollePie9 {
LOWUBAR_A('a', '\u0332'),
LOWUBAR_B('b', '\u0332'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash01 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash01 implements FourCornerDotCollePie9 {
NXX_1('<27>'),
;

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash02 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash02 implements FourCornerDotCollePie9 {
// Symbols from MSX KANJI KuTen-164

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash03 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash03 implements FourCornerDotCollePie9 {
NXX_1(' '),
NXX_2(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash04 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash04 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash05 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash05 implements FourCornerDotCollePie9 {
NXX_01(0x1D372),
NXX_02(0x1D373),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash06 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash06 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash07 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash07 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash08 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash08 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash09 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash09 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash10 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash10 implements FourCornerDotCollePie9 {
BOLD_DECIMAL_0(0x1D7CE),
BOLD_DECIMAL_1(0x1D7CF),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash11 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash11 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash12 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash12 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash13 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash13 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash14 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash14 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash15 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash15 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash16 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash16 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash17 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash17 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash18 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash18 implements FourCornerDotCollePie9 {
NXX_10(0x1D369, '\u20E5'),
NXX_11(0x1D36A, '\u20E5'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash19 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash19 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash20 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash20 implements FourCornerDotCollePie9 {
UBAR_DECIMAL_0(0x1D7E2, '\u0332'),
UBAR_DECIMAL_1(0x1D7E3, '\u0332'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash21 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash21 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash22 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash22 implements FourCornerDotCollePie9 {
NXX_01('⇐'),
NXX_02('⇑'),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash23 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash23 implements FourCornerDotCollePie9 {
NXX_01(' '),
NXX_02(' '),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash24 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash24 implements FourCornerDotCollePie9 {
NXX_01(0x1D6A8),
NXX_02(0x1D6A9),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash25 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash25 implements FourCornerDotCollePie9 {
// Upper case greek from MSX KANJI KuTen-600 and 616

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash26 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash26 implements FourCornerDotCollePie9 {
BOLD_A(0x1D400),
BOLD_B(0x1D401),

View file

@ -26,7 +26,7 @@ import java.util.Arrays;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitCollePie9;
import org.x4o.fc18.cake2.FourCornerDotCollePie9;
import org.x4o.fc18.cake2.zero33.FCDotCDC1604DashP6;
import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
@ -36,7 +36,7 @@ import org.x4o.fc18.cake2.zero33.FCDotDEC0127DashPX0;
* @author Willem Cazander
* @version 1.0 Jan 15, 2025
*/
public enum FCDotPIE9DDash27 implements FourCornerDotPetitCollePie9 {
public enum FCDotPIE9DDash27 implements FourCornerDotCollePie9 {
// Why is 0x1D455 undefined, too many math symbols has killed unicode and all math sites uses pictures....

View file

@ -23,7 +23,7 @@
package org.x4o.fc18.cake2.zero33;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
import org.x4o.fc18.cake2.FourCornerDotColleZero33Gram;
/**
* "FC.AMD0110-SA" Four Corner Application Methodoums Decimals
@ -32,7 +32,7 @@ import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
* @author Willem Cazander
* @version 1.0 Dec 31, 2024
*/
public enum FCDotAMD0110DashSA implements FourCornerDotPetitColleZero33Gram {
public enum FCDotAMD0110DashSA implements FourCornerDotColleZero33Gram {
/// End-user defined rendering for zero
T010_NXX_001,
/// End-user defined rendering for one

View file

@ -25,14 +25,14 @@ package org.x4o.fc18.cake2.zero33;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33P8;
import org.x4o.fc18.cake2.FourCornerDotColleZero33P8;
/// "FC.APL0127-P8A" Four Corner A Programming Language symbols cake slice of cake points.
///
/// @author Willem Cazander
/// @version 1.0 Jan 1, 2025
///
public enum FCDotAPL0127DashP7A implements FourCornerDotPetitColleZero33P8 {
public enum FCDotAPL0127DashP7A implements FourCornerDotColleZero33P8 {
/// SL080000 One is pi
CIRCLE('○'),

View file

@ -25,14 +25,14 @@ package org.x4o.fc18.cake2.zero33;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33P8;
import org.x4o.fc18.cake2.FourCornerDotColleZero33P8;
/// "FC.APL0127-P8B" Four Corner A Programming Language symbols cake slice of cake points.
///
/// @author Willem Cazander
/// @version 1.0 Jan 1, 2025
///
public enum FCDotAPL0127DashP7B implements FourCornerDotPetitColleZero33P8 {
public enum FCDotAPL0127DashP7B implements FourCornerDotColleZero33P8 {
/// NEW from dynlog APL
CIRCLE_DOT_XL('⍥'),

View file

@ -25,14 +25,14 @@ package org.x4o.fc18.cake2.zero33;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33P8;
import org.x4o.fc18.cake2.FourCornerDotColleZero33P8;
/// "FC.APL0127-P8C" Four Corner A Programming Language symbols cake slice of cake points.
///
/// @author Willem Cazander
/// @version 1.0 Jan 1, 2025
///
public enum FCDotAPL0127DashP7C implements FourCornerDotPetitColleZero33P8 {
public enum FCDotAPL0127DashP7C implements FourCornerDotColleZero33P8 {
/// SL720000
EPSILON('∊'),

View file

@ -23,7 +23,7 @@
package org.x4o.fc18.cake2.zero33;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
import org.x4o.fc18.cake2.FourCornerDotColleZero33Gram;
/**
* "FC.BMW0102-S2" Four Corner Binary Model Word encoding.
@ -31,7 +31,7 @@ import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
* @author Willem Cazander
* @version 1.0 Dec 31, 2024
*/
public enum FCDotBMW0102DashS2 implements FourCornerDotPetitColleZero33Gram {
public enum FCDotBMW0102DashS2 implements FourCornerDotColleZero33Gram {
T002_NXX_001,
T002_NXX_002,
;

View file

@ -25,14 +25,14 @@ package org.x4o.fc18.cake2.zero33;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33P8;
import org.x4o.fc18.cake2.FourCornerDotColleZero33P8;
/// "FC.BYD0127-P8D" Four Corner Block Your Display terminal application.
///
/// @author Willem Cazander
/// @version 1.0 Jan 1, 2025
///
public enum FCDotBYD0127DashP7D implements FourCornerDotPetitColleZero33P8 {
public enum FCDotBYD0127DashP7D implements FourCornerDotColleZero33P8 {
// 32 chars are CP/M Plus aligned

View file

@ -25,14 +25,14 @@ package org.x4o.fc18.cake2.zero33;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33P8;
import org.x4o.fc18.cake2.FourCornerDotColleZero33P8;
/// "FC.BYD0127-P8E" Four Corner Block Your Display terminal application.
///
/// @author Willem Cazander
/// @version 1.0 Jan 1, 2025
///
public enum FCDotBYD0127DashP7E implements FourCornerDotPetitColleZero33P8 {
public enum FCDotBYD0127DashP7E implements FourCornerDotColleZero33P8 {
BOX1_C('┐'),
BOX1_D('┤'),

View file

@ -25,14 +25,14 @@ package org.x4o.fc18.cake2.zero33;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33P8;
import org.x4o.fc18.cake2.FourCornerDotColleZero33P8;
/// "FC.BYD0127-P8F" Four Corner Block Your Display terminal application.
///
/// @author Willem Cazander
/// @version 1.0 Jan 1, 2025
///
public enum FCDotBYD0127DashP7F implements FourCornerDotPetitColleZero33P8 {
public enum FCDotBYD0127DashP7F implements FourCornerDotColleZero33P8 {
U2597('▗'),
U2598('▘'),

View file

@ -24,7 +24,7 @@ package org.x4o.fc18.cake2.zero33;
import java.util.List;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33P8;
import org.x4o.fc18.cake2.FourCornerDotColleZero33P8;
import org.x4o.fc18.cake2.FourCornerX00PetitVideCoinCarne;
import org.x4o.fc18.cake2.FourCornerX00PetitVideCoinCarneFrapper;
import org.x4o.fc18.cake2.FourCornerX00PetitVideCoinCarneFrapperRetrait;
@ -42,7 +42,7 @@ import org.x4o.fc18.cake2.FourCornerX00PetitVideCoinCarneFrapperRetrait;
/// @author Willem Cazander
/// @version 1.0 Dec 22, 2024
///
public enum FCDotCDC1604DashP6 implements FourCornerDotPetitColleZero33P8, FourCornerX00PetitVideCoinCarne {
public enum FCDotCDC1604DashP6 implements FourCornerDotColleZero33P8, FourCornerX00PetitVideCoinCarne {
// [__NUL][__PIE68][__NCR68][__ESC6] [_NEWLINE][_SPACE]?! <>[] (){}
// ~+-* ,.:; '"`^ =#$%
// |_\/ @ABC DEFG HIJK

View file

@ -23,7 +23,7 @@
package org.x4o.fc18.cake2.zero33;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
import org.x4o.fc18.cake2.FourCornerDotColleZero33Gram;
/**
* "FC.DNA0104-S4" Four Corner Application Direct Nuclear Air strike for quadratonic values.
@ -32,7 +32,7 @@ import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
* @author Willem Cazander
* @version 1.0 Jan 07, 2024
*/
public enum FCDotDNA0104DashS4 implements FourCornerDotPetitColleZero33Gram {
public enum FCDotDNA0104DashS4 implements FourCornerDotColleZero33Gram {
NXX_001,
NXX_002,
NXX_003,

View file

@ -23,7 +23,7 @@
package org.x4o.fc18.cake2.zero33;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
import org.x4o.fc18.cake2.FourCornerDotColleZero33Gram;
/**
* "FC.IBM1616-H8" Four Corner Interim Byte Mode, embed raw 8 bit Data
@ -32,7 +32,7 @@ import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotIBM1616DashH8 implements FourCornerDotPetitColleZero33Gram {
public enum FCDotIBM1616DashH8 implements FourCornerDotColleZero33Gram {
NXX_001,
NXX_002,
NXX_003,

View file

@ -23,7 +23,7 @@
package org.x4o.fc18.cake2.zero33;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
import org.x4o.fc18.cake2.FourCornerDotColleZero33Gram;
/**
* "FC.NXP0103-S3" Four Corner Application Natural X-state Phasing for tri-state or high impedance (Hi-Z) signals.
@ -32,7 +32,7 @@ import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
* @author Willem Cazander
* @version 1.0 Jan 07, 2024
*/
public enum FCDotNXP0103DashS3 implements FourCornerDotPetitColleZero33Gram {
public enum FCDotNXP0103DashS3 implements FourCornerDotColleZero33Gram {
NXX_001,
NXX_002,
NXX_003,

View file

@ -23,7 +23,7 @@
package org.x4o.fc18.cake2.zero33;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
import org.x4o.fc18.cake2.FourCornerDotColleZero33Gram;
/**
* "FC.OCE0801-H3" Four Corner Octal Character Encoding in Hinari 3 bit.
@ -32,7 +32,7 @@ import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotOCE0801DashH3 implements FourCornerDotPetitColleZero33Gram {
public enum FCDotOCE0801DashH3 implements FourCornerDotColleZero33Gram {
NXX_001,
NXX_002,
NXX_003,

View file

@ -23,7 +23,7 @@
package org.x4o.fc18.cake2.zero33;
import org.x4o.fc18.cake2.FourCornerDotCake;
import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
import org.x4o.fc18.cake2.FourCornerDotColleZero33Gram;
/**
* "FC.OCE0808-H6" Four Corner Octal Character Encoding in Hinari 6 bit.
@ -32,7 +32,7 @@ import org.x4o.fc18.cake2.FourCornerDotPetitColleZero33Gram;
* @author Willem Cazander
* @version 1.0 Dec 30, 2024
*/
public enum FCDotOCE0808DashH6 implements FourCornerDotPetitColleZero33Gram {
public enum FCDotOCE0808DashH6 implements FourCornerDotColleZero33Gram {
NXX_001,
NXX_002,
NXX_003,

Some files were not shown because too many files have changed in this diff Show more