View Javadoc
1   /*******************************************************************************
2    * jArduino: Arduino C++ Code Generation From Java
3    * Copyright 2020 Tony Washer
4    *
5    * Licensed under the Apache License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    *
9    *   http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   ******************************************************************************/
17  package net.sourceforge.jarduino.message;
18  
19  /**
20   * Standard characters.
21   */
22  public final class ArduinoChar {
23      /**
24       * Private constructor.
25       */
26      private ArduinoChar() {
27      }
28  
29      /**
30       * The colon character.
31       */
32      public static final char COLON = ':';
33  
34      /**
35       * The semi-colon character.
36       */
37      public static final char SEMICOLON = ';';
38  
39      /**
40       * The comma character.
41       */
42      public static final char COMMA = ',';
43  
44      /**
45       * The Pipe character.
46       */
47      public static final char PIPE = '|';
48  
49      /**
50       * The At character.
51       */
52      public static final char AT = '@';
53  
54      /**
55       * The quote character.
56       */
57      public static final char QUOTE = '\"';
58  
59      /**
60       * The blank character.
61       */
62      public static final char BLANK = ' ';
63  
64      /**
65       * The decimal point character.
66       */
67      public static final char DEC = '.';
68  
69      /**
70       * The underscore character.
71       */
72      public static final char UNDERSCORE = '_';
73  
74      /**
75       * The Brace character.
76       */
77      public static final char BRACE = '{';
78  
79      /**
80       * The endBrace character.
81       */
82      public static final char ENDBRACE = '}';
83  
84      /**
85       * The lineFeed character.
86       */
87      public static final char LF = '\n';
88  }