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 BeanWithEnum.
17 */
18 public class BeanWithEnum {
19
20 /** The parse state. */
21 private ParseState parseState;
22
23 /**
24 * Gets the parses the state.
25 *
26 * @return the parses the state
27 */
28 public ParseState getParseState() {
29 return parseState;
30 }
31
32 /**
33 * Sets the parses the state.
34 *
35 * @param parseState
36 * the new parses the state
37 */
38 public void setParseState(ParseState parseState) {
39 this.parseState = parseState;
40 }
41 }