public enum BHiveExcelMergeMode extends Enum<BHiveExcelMergeMode>
| Enum Constant and Description |
|---|
MERGE_VERTICAL
세로 Merge
|
MERGE_VERTICAL_HIERARCHY
세로 Merge, 앞에서 부터 HIERARCHY 방식 사용 (1열이 7줄 합쳐지면 2열은 그 경계를 초과하여 합치치 않음)
|
NONE
아무처리도 하지 않음
|
| Modifier and Type | Method and Description |
|---|---|
static BHiveExcelMergeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BHiveExcelMergeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BHiveExcelMergeMode NONE
public static final BHiveExcelMergeMode MERGE_VERTICAL
public static final BHiveExcelMergeMode MERGE_VERTICAL_HIERARCHY
public static BHiveExcelMergeMode[] values()
for (BHiveExcelMergeMode c : BHiveExcelMergeMode.values()) System.out.println(c);
public static BHiveExcelMergeMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.