LoadType.java

/*
 * JavaBean Tester (https://github.com/hazendaz/javabean-tester)
 *
 * Copyright 2012-2021 Hazendaz.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of The Apache Software License,
 * Version 2.0 which accompanies this distribution, and is available at
 * http://www.apache.org/licenses/LICENSE-2.0.txt
 *
 * Contributors:
 *     CodeBox (Rob Dawson).
 *     Hazendaz (Jeremy Landis).
 */
package com.codebox.enums;

/**
 * The Enum LoadType.
 */
public enum LoadType {

    /** The standard data. */
    STANDARD_DATA,

    /** The alternate data. */
    ALTERNATE_DATA,

    /** The null data. */
    NULL_DATA,

    /** The custom data. */
    // TODO 1/12/2019 JWL Placeholder for customizing data load
    CUSTOM_DATA;

}