View Javadoc
1   /*
2    * SPDX-License-Identifier: Apache-2.0
3    * See LICENSE file for details.
4    *
5    * Copyright 2012-2026 hazendaz
6    *
7    * Portions of initial baseline code (getter/setter test) by Rob Dawson (CodeBox)
8    */
9   package com.codebox.enums;
10  
11  /**
12   * The Enum LoadType.
13   */
14  public enum LoadType {
15  
16      /** The standard data. */
17      STANDARD_DATA,
18  
19      /** The alternate data. */
20      ALTERNATE_DATA,
21  
22      /** The null data. */
23      NULL_DATA,
24  
25      /** The custom data. */
26      // TODO 1/12/2019 JWL Placeholder for customizing data load
27      CUSTOM_DATA;
28  
29  }