View Javadoc
1   /*
2    * JavaBean Tester (https://github.com/hazendaz/javabean-tester)
3    *
4    * Copyright 2012-2021 Hazendaz.
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    * http://www.apache.org/licenses/LICENSE-2.0.txt
10   *
11   * Contributors:
12   *     CodeBox (Rob Dawson).
13   *     Hazendaz (Jeremy Landis).
14   */
15  package com.codebox.enums;
16  
17  /**
18   * The Enum LoadType.
19   */
20  public enum LoadType {
21  
22      /** The standard data. */
23      STANDARD_DATA,
24  
25      /** The alternate data. */
26      ALTERNATE_DATA,
27  
28      /** The null data. */
29      NULL_DATA,
30  
31      /** The custom data. */
32      // TODO 1/12/2019 JWL Placeholder for customizing data load
33      CUSTOM_DATA;
34  
35  }