1 /* 2 * CSVeed (https://github.com/42BV/CSVeed) 3 * 4 * Copyright 2013-2023 CSVeed. 5 * 6 * All rights reserved. This program and the accompanying materials 7 * are made available under the terms of The Apache Software License, 8 * Version 2.0 which accompanies this distribution, and is available at 9 * https://www.apache.org/licenses/LICENSE-2.0.txt 10 */ 11 package org.csveed.test.model; 12 13 import org.csveed.token.ParseState; 14 15 /** 16 * The Class BeanWithEnumAndMore. 17 */ 18 public class BeanWithEnumAndMore { 19 20 /** The name. */ 21 private String name; 22 23 /** The parse state. */ 24 private ParseState parseState; 25 26 /** 27 * Gets the parses the state. 28 * 29 * @return the parses the state 30 */ 31 public ParseState getParseState() { 32 return parseState; 33 } 34 35 /** 36 * Sets the parses the state. 37 * 38 * @param parseState 39 * the new parses the state 40 */ 41 public void setParseState(ParseState parseState) { 42 this.parseState = parseState; 43 } 44 45 /** 46 * Gets the name. 47 * 48 * @return the name 49 */ 50 public String getName() { 51 return name; 52 } 53 54 /** 55 * Sets the name. 56 * 57 * @param name 58 * the new name 59 */ 60 public void setName(String name) { 61 this.name = name; 62 } 63 }