All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hcl.domino.design.navigator.NavigatorLineStyle Maven / Gradle / Ivy

There is a newer version: 1.44.0
Show newest version
package com.hcl.domino.design.navigator;

import com.hcl.domino.misc.INumberEnum;
import com.hcl.domino.misc.NotesConstants;

/**
 * Represents values for line styles in Navigator components.
 * 
 * @author Jesse Gallagher
 * @since 1.1.2
 */
public enum NavigatorLineStyle implements INumberEnum {
  SOLID(NotesConstants.VM_LINE_SOLID),
  NONE(NotesConstants.VM_LINE_NONE);
  
  private final short value;
  
  private NavigatorLineStyle(short value) {
    this.value = value;
  }

  @Override
  public long getLongValue() {
    return value;
  }

  @Override
  public Short getValue() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy