/*******************************************************************************
* Copyright 2017 Capital One Services, LLC and Bitwise, Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package hydrograph.ui.dataviewer.constants;
/**
* The Class DatasetInformationConstants.
* Provides the constant values for Dataset Information Window.
* @author Bitwise
*/
public class DatasetInformationConstants {
public static final String GENERAL = "General";
public static final String SCHEMA = "Schema";
public static final String VIEW_DATA_FILE = "View Data File Path : ";
public static final String EDGE_NODE = "Edge Node : ";
public static final String USERNAME = "User Name : ";
public static final String LOCAL_CHUNK_DATA = "Local Chunk Data Download : ";
public static final String FILE_SIZE = " File Size (MB) : ";
public static final String NUMBER_OF_RECORDS = "No of Records in View Data File : ";
public static final String PAGE_SIZE = "Grid Data Page Size : ";
public static final String DELIMETER = "Delimiter : ";
public static final String QUOTE = "Quote : ";
public static final String FEILD_NAME = "Field Name";
public static final String DATA_TYPE = "Data Type";
public static final String DATE_FORMAT = "Date Format";
public static final String PRECISION = "Precision";
public static final String SCALE = "Scale";
public static final String SCALE_TYPE = "Scale Type";
public static final String DESCRIPTION = "Description";
public static final String DOWNLOADED_FILTER_CONDITION = "Downloaded Filter condition : ";
public static final String ORIGINAL_FILTER_CONDITION = "Original Filter condition : ";
public static final String ORIGINAL_FILE_SIZE = " Downloaded Chunk File Size (KB) : ";
}