Remove yang-test
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / model / FieldSerializer.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model;
10
11 public class FieldSerializer {
12
13     public static String toString(Field field) {
14         StringBuilder build = new StringBuilder();
15         build.append("private ");
16         field.getModifiers().forEach(mod -> build.append(mod).append(" "));
17         build.append(field.getType()).append(" ");
18         build.append(field.getName());
19         if (field.getDefinition() != null) {
20             build.append(" = ").append(field.getDefinition());
21         }
22         build.append(";");
23         build.append("\n");
24         return build.toString();
25     }
26 }