public enum ScheduleAttr extends Enum<ScheduleAttr>
Enum Constant and Description |
---|
APPT |
BUSY
Entry types that block off busy time.
|
FOREIGNUNID
Used by gateways to return foreign UNIDs
|
NONWORK |
PENCILED
Entry types that don't block off busy time
|
REPEATEVENT
Used by V5 C&S to identify new repeating meetings
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ScheduleAttr |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduleAttr[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduleAttr FOREIGNUNID
public static final ScheduleAttr REPEATEVENT
public static final ScheduleAttr BUSY
public static final ScheduleAttr PENCILED
public static final ScheduleAttr APPT
public static final ScheduleAttr NONWORK
public static ScheduleAttr[] values()
for (ScheduleAttr c : ScheduleAttr.values()) System.out.println(c);
public static ScheduleAttr 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 nullpublic int getValue()
Copyright © 2019–2021 HCL. All rights reserved.