2e77618b98a51e692206569a4af1b769f0bc619c
[aaf/authz.git] / misc / rosetta / src / main / java / org / onap / aaf / misc / rosetta / marshal / FieldMarshal.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.misc.rosetta.marshal;
23
24
25 import org.onap.aaf.misc.rosetta.Marshal;
26 import org.onap.aaf.misc.rosetta.Parse;
27 import org.onap.aaf.misc.rosetta.Parsed;
28
29 public abstract class FieldMarshal<T> extends Marshal<T> {
30     private String name;
31
32     public FieldMarshal(String name) {
33         this.name = name;
34     }
35     
36     public String getName() {
37         return name;
38     }
39     
40     @Override
41     public Parsed<State> parse(T t, Parsed<State> parsed) {
42         parsed.state.ladder.push(DONE_ITERATOR);
43         parsed.event = Parse.NEXT;
44         parsed.name = name;
45         parsed.isString = data(t,parsed.sb);
46         return parsed;
47     }
48
49     /**
50      * Write Value to StringBuilder
51      * Return true if value looks like a String
52      *        false if it is Numeric
53      * @param t
54      * @param sb
55      * @return
56      */
57     protected abstract boolean data(T t, StringBuilder sb);
58     
59 }