File tree Expand file tree Collapse file tree
base/src/main/java/com/smartdevicelink/proxy/rpc/enums Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,14 +52,14 @@ public enum BitsPerSample {
5252 */
5353 _16_BIT ("16_BIT" );
5454
55- private final String INTERNAL_NAME ;
55+ private final String VALUE ;
5656
57- private BitsPerSample (String internalName ) {
58- this .INTERNAL_NAME = internalName ;
57+ private BitsPerSample (String value ) {
58+ this .VALUE = value ;
5959 }
6060
6161 public String toString () {
62- return this .INTERNAL_NAME ;
62+ return this .VALUE ;
6363 }
6464
6565 public static BitsPerSample valueForString (String value ) {
Original file line number Diff line number Diff line change @@ -51,14 +51,14 @@ public enum Dimension {
5151 */
5252 _3D ("3D" );
5353
54- private final String INTERNAL_NAME ;
54+ private final String VALUE ;
5555
56- private Dimension (String internalName ) {
57- this .INTERNAL_NAME = internalName ;
56+ private Dimension (String value ) {
57+ this .VALUE = value ;
5858 }
5959
6060 public String toString () {
61- return this .INTERNAL_NAME ;
61+ return this .VALUE ;
6262 }
6363
6464 /**
Original file line number Diff line number Diff line change @@ -99,10 +99,10 @@ public enum DisplayType {
9999
100100 ;
101101
102- private final String INTERNAL_NAME ;
102+ private final String VALUE ;
103103
104- private DisplayType (String internalName ) {
105- this .INTERNAL_NAME = internalName ;
104+ private DisplayType (String value ) {
105+ this .VALUE = value ;
106106 }
107107
108108 public static DisplayType valueForString (String value ) {
@@ -121,6 +121,6 @@ public static DisplayType valueForString(String value) {
121121
122122 @ Override
123123 public String toString () {
124- return INTERNAL_NAME ;
124+ return VALUE ;
125125 }
126126}
Original file line number Diff line number Diff line change @@ -71,14 +71,14 @@ public enum HMILevel {
7171 */
7272 HMI_NONE ("NONE" );
7373
74- private final String INTERNAL_NAME ;
74+ private final String VALUE ;
7575
76- private HMILevel (String internalName ) {
77- this .INTERNAL_NAME = internalName ;
76+ private HMILevel (String value ) {
77+ this .VALUE = value ;
7878 }
7979
8080 public String toString () {
81- return this .INTERNAL_NAME ;
81+ return this .VALUE ;
8282 }
8383
8484 /**
Original file line number Diff line number Diff line change @@ -41,14 +41,14 @@ public enum Jingle{
4141 LISTEN ("LISTEN_JINGLE" ),
4242 HELP ("HELP_JINGLE" );
4343
44- private final String INTERNAL_NAME ;
44+ private final String VALUE ;
4545
46- private Jingle (String name ){
47- this .INTERNAL_NAME = name ;
46+ private Jingle (String value ){
47+ this .VALUE = value ;
4848 }
4949
5050 public String toString () {
51- return this .INTERNAL_NAME ;
51+ return this .VALUE ;
5252 }
5353
5454 public static Jingle valueForString (String value ) {
Original file line number Diff line number Diff line change @@ -249,16 +249,16 @@ public enum Language {
249249
250250 TH_TH ("TH-TH" );
251251
252- private final String INTERNAL_NAME ;
252+ private final String VALUE ;
253253
254- private Language (String internalName ) {
255- this .INTERNAL_NAME = internalName ;
254+ private Language (String value ) {
255+ this .VALUE = value ;
256256 }
257257 /**
258258 * Returns a String representing a kind of Language
259259 */
260260 public String toString () {
261- return this .INTERNAL_NAME ;
261+ return this .VALUE ;
262262 }
263263
264264 /**
Original file line number Diff line number Diff line change @@ -102,14 +102,14 @@ public enum MetadataType {
102102
103103 ;
104104
105- private final String internalName ;
105+ private final String VALUE ;
106106
107- private MetadataType (String internalName ) {
108- this .internalName = internalName ;
107+ private MetadataType (String value ) {
108+ this .VALUE = value ;
109109 }
110110
111111 public String toString () {
112- return this .internalName ;
112+ return this .VALUE ;
113113 }
114114
115115 public static MetadataType valueForString (String value ) {
Original file line number Diff line number Diff line change @@ -139,16 +139,16 @@ public enum PredefinedLayout {
139139 LARGE_GRAPHIC_ONLY ("LARGE_GRAPHIC_ONLY" ),
140140 ;
141141
142- private final String INTERNAL_NAME ;
142+ private final String VALUE ;
143143
144- private PredefinedLayout (String internalName ) {
145- this .INTERNAL_NAME = internalName ;
144+ private PredefinedLayout (String value ) {
145+ this .VALUE = value ;
146146 }
147147 /**
148148 * Returns a String representing a PredefinedLayout
149149 */
150150 public String toString () {
151- return this .INTERNAL_NAME ;
151+ return this .VALUE ;
152152 }
153153
154154 /**
Original file line number Diff line number Diff line change @@ -64,14 +64,14 @@ public enum SamplingRate {
6464 */
6565 _44KHZ ("44KHZ" );
6666
67- private final String INTERNAL_NAME ;
67+ private final String VALUE ;
6868
69- private SamplingRate (String internalName ) {
70- this .INTERNAL_NAME = internalName ;
69+ private SamplingRate (String value ) {
70+ this .VALUE = value ;
7171 }
7272
7373 public String toString () {
74- return this .INTERNAL_NAME ;
74+ return this .VALUE ;
7575 }
7676
7777 public static SamplingRate valueForString (String value ) {
Original file line number Diff line number Diff line change @@ -52,14 +52,14 @@ public enum SoftButtonType {
5252 */
5353 SBT_BOTH ("BOTH" );
5454
55- private final String INTERNAL_NAME ;
55+ private final String VALUE ;
5656
57- private SoftButtonType (String internalName ) {
58- this .INTERNAL_NAME = internalName ;
57+ private SoftButtonType (String value ) {
58+ this .VALUE = value ;
5959 }
6060
6161 public String toString () {
62- return this .INTERNAL_NAME ;
62+ return this .VALUE ;
6363 }
6464
6565 public static SoftButtonType valueForString (String value ) {
You can’t perform that action at this time.
0 commit comments