001/* 002 * Copyright (c) 2009 The openGion Project. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 013 * either express or implied. See the License for the specific language 014 * governing permissions and limitations under the License. 015 */ 016package org.opengion.hayabusa.html; 017 018/** 019 * クロス集計テーブル作成クラス用のパラメータ定数設定クラスです。 020 * 021 * パラメータのキーとなる値と、初期値を設定しています。 022 * すべて、public static final で定義されている為、設定値はドキュメント等で 023 * 確認することが可能です。 024 * ただし、キー値などを、直書きすることを前提に公開していませんので、 025 * 必要であれば、定数として、このクラス経由で使用してください。 026 * 027 * @og.rev 3.5.4.0 (2003/11/25) 新規作成 028 * @og.rev 5.0.0.3 (2009/09/22) FIRST_CLM_GOKEI_KEY追加 029 * @og.group その他 030 * 031 * @version 4.0 032 * @author Kazuhiko Hasegawa 033 * @since JDK5.0, 034 */ 035public final class ViewCrossTableParam { 036 037 /** パラメータ定数 {@value} */ 038 public static final String SHOKEI = "row_hs" ; 039 /** パラメータ定数 {@value} */ 040 public static final String HEADER1 = "row_h1" ; 041 /** パラメータ定数 {@value} */ 042 public static final String HEADER2 = "row_h2" ; 043 044 /** パラメータ定数 {@value} */ 045 public static final String BREAK_COLUMN_KEY = "h_breakColumn" ; 046 /** パラメータ定数 {@value} */ 047 public static final String NO_GROUP_COLUMNS_KEY = "h_noGroupColumns" ; 048 /** パラメータ定数 {@value} */ 049 public static final String SUM_NUMBER_KEY = "h_sumNumber" ; 050 /** パラメータ定数 {@value} */ 051 public static final String CUBE_X_COLUMN_KEY = "h_cubeXColumn" ; 052 /** パラメータ定数 {@value} */ 053 public static final String CUBE_Y_COLUMN_KEY = "h_cubeYColumn" ; 054 /** パラメータ定数 {@value} */ 055 public static final String SHOKEI_LABEL_KEY = "h_shokeiLabel" ; 056 /** パラメータ定数 {@value} */ 057 public static final String GOKEI_LABEL_KEY = "h_gokeiLabel" ; 058 /** パラメータ定数 {@value} */ 059 public static final String CUBE_SORT_TYPE_KEY = "h_cubeSortType" ; 060 /** パラメータ定数 {@value} */ 061 public static final String GOKEI_SORT_DIR_KEY = "h_gokeiSortDir" ; 062 /** パラメータ定数 {@value} */ 063 public static final String FIRST_CLM_GOKEI_KEY = "h_firstClmGokei" ; // 5.0.0.3 (2009/09/22) 064 /** パラメータ定数 {@value} */ 065 public static final String USE_HEADER_COLUMN = "h_useHeaderColumn" ; // 5.2.2.0 (2010/11/01) 066 /** パラメータ定数 {@value} */ 067 public static final String USE_CLASS_ADD = "h_useClassAdd" ; // 5.2.2.0 (2010/11/01) 068 /** パラメータ定数 {@value} */ 069 public static final String SAVE_TABLEID_KEY = "h_saveTableId" ; // 5.2.2.0 (2010/11/01) 070 /** パラメータ定数 {@value} */ 071 public static final String SAVE_SCOPE_KEY = "h_saveScope" ; // 5.2.2.0 (2010/11/01) 072 /** パラメータ定数 {@value} */ 073 public static final String USE_HEADER_RSC = "h_useHeaderResource" ; // 5.5.5.0 (2012/07/20) 074 /** パラメータ定数 {@value} */ 075 public static final String HEADER_CODE_KEY = "h_headerCode" ; // 5.5.5.0 (2012/07/20) 076 077 /** 078 * デフォルトコンストラクターをprivateにして、 079 * オブジェクトの生成をさせないようにする。 080 * 081 * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor. 082 */ 083 private ViewCrossTableParam() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 084}