summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/parserutils/DoubleMatcher.java
diff options
context:
space:
mode:
authorbjculkin <bjculkin@mix.wvu.edu>2017-04-07 08:56:27 -0400
committerbjculkin <bjculkin@mix.wvu.edu>2017-04-07 08:56:27 -0400
commit848dc739becfa41193aff9a07c918aed91e5ef79 (patch)
tree2f325ddb4e7136cc17fdaf6f93485b991eff57a3 /BJC-Utils2/src/main/java/bjc/utils/parserutils/DoubleMatcher.java
parentb6c4a9a2a0479edf285e501b97c54e4f4575186b (diff)
Cleanup
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/parserutils/DoubleMatcher.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/parserutils/DoubleMatcher.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/parserutils/DoubleMatcher.java b/BJC-Utils2/src/main/java/bjc/utils/parserutils/DoubleMatcher.java
index 83d2d2a..a91bf2a 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/parserutils/DoubleMatcher.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/parserutils/DoubleMatcher.java
@@ -13,31 +13,31 @@ class DoubleMatcher {
/*
* Unit pieces.
*/
- private static final String DecDigits = getRegex("fpDigits");
- private static final String HexDigits = getRegex("fpHexDigits");
- private static final String Exponent = applyFormat("fpExponent", getRegex("fpExponent"), DecDigits);
+ private static final String rDecDigits = getRegex("fpDigits");
+ private static final String rHexDigits = getRegex("fpHexDigits");
+ private static final String rExponent = applyFormat("fpExponent", getRegex("fpExponent"), rDecDigits);
/*
* Decimal floating point numbers.
*/
- private static final String SIMPLE_DEC = applyFormat("fpDecimalDecimal", DecDigits, Exponent);
- private static final String SIMPLE_INTDEC = applyFormat("fpDecimalInteger", DecDigits, Exponent);
+ private static final String rSimpleDec = applyFormat("fpDecimalDecimal", rDecDigits, rExponent);
+ private static final String rSimpleIntDec = applyFormat("fpDecimalInteger", rDecDigits, rExponent);
/*
* Hex floating point numbers.
*/
- private static final String HEX_INT = applyFormat("fpHexInteger", HexDigits);
- private static final String HEX_DEC = applyFormat("fpHexDecimal", HexDigits);
- private static final String HEX_LEAD = applyFormat("fpHexLeader", HEX_INT, HEX_DEC);
- private static final String HEX_STRING = applyFormat("fpHexString", HEX_LEAD, DecDigits);
+ private static final String rHexInt = applyFormat("fpHexInteger", rHexDigits);
+ private static final String rHexDec = applyFormat("fpHexDecimal", rHexDigits);
+ private static final String rHexLead = applyFormat("fpHexLeader", rHexInt, rHexDec);
+ private static final String rHexString = applyFormat("fpHexString", rHexLead, rDecDigits);
/*
* Floating point components.
*/
- private static final String FP_LEADER = getRegex("fpLeader");
- private static final String FP_NUM = applyFormat("fpNumber", SIMPLE_INTDEC, SIMPLE_DEC,
- HEX_STRING);
+ private static final String rFPLeader = getRegex("fpLeader");
+ private static final String rFPNum = applyFormat("fpNumber", rSimpleIntDec, rSimpleDec,
+ rHexString);
- private static final String fpRegex = applyFormat("fpDouble", FP_LEADER, FP_NUM);
- public static final Pattern floatingLiteral = Pattern.compile("\\A" + fpRegex + "\\Z");
+ private static final String rDouble = applyFormat("fpDouble", rFPLeader, rFPNum);
+ public static final Pattern doubleLiteral = Pattern.compile("\\A" + rDouble + "\\Z");
} \ No newline at end of file