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

com.hcl.domino.richtext.records.CDFieldHint Maven / Gradle / Ivy

There is a newer version: 1.41.0
Show newest version
/*
 * ==========================================================================
 * Copyright (C) 2019-2022 HCL America, Inc. ( http://www.hcl.com/ )
 *                            All rights reserved.
 * ==========================================================================
 * 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 .
 *
 * 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 com.hcl.domino.richtext.records;

import java.nio.ByteBuffer;
import java.util.Collection;
import java.util.Set;

import com.hcl.domino.data.NativeItemCoder;
import com.hcl.domino.misc.INumberEnum;
import com.hcl.domino.richtext.RichTextConstants;
import com.hcl.domino.richtext.annotation.StructureDefinition;
import com.hcl.domino.richtext.annotation.StructureGetter;
import com.hcl.domino.richtext.annotation.StructureMember;
import com.hcl.domino.richtext.annotation.StructureSetter;
import com.hcl.domino.richtext.structures.WSIG;

/**
 * @author Jesse Gallagher
 * @since 1.0.24
 */
@StructureDefinition(name = "CDFIELDHINT", members = {
    @StructureMember(name = "Header", type = WSIG.class),
    @StructureMember(name = "HintTextLength", type = short.class, unsigned = true),
    @StructureMember(name = "Flags", type = CDFieldHint.Flag.class, bitfield = true),
    @StructureMember(name = "Spare", type = short.class),
    @StructureMember(name = "Spare2", type = short.class)
})
public interface CDFieldHint extends RichTextRecord {
  enum Flag implements INumberEnum {
    /**
     * CDFIELDHINT record contains hint information for limited object types in a
     * Rich Text Lite field.
     */
    LIMITED(RichTextConstants.FIELDHINT_LIMITED),
    ;

    private final short value;

    Flag(final short value) {
      this.value = value;
    }

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

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

  @StructureGetter("Flags")
  Set getFlags();

  @StructureGetter("Header")
  @Override
  WSIG getHeader();

  default String getHintText() {
    final ByteBuffer buf = this.getVariableData();
    final int len = this.getHintTextLength();
    final byte[] lmbcs = new byte[len];
    buf.get(lmbcs);
    return new String(lmbcs, NativeItemCoder.get().getLmbcsCharset());
  }

  @StructureGetter("HintTextLength")
  int getHintTextLength();

  @StructureSetter("Flags")
  CDFieldHint setFlags(Collection flags);

  default CDFieldHint setHintText(final String text) {
    final byte[] lmbcs = text == null ? new byte[0] : text.getBytes(NativeItemCoder.get().getLmbcsCharset());
    this.setHintTextLength(lmbcs.length);
    this.resizeVariableData(lmbcs.length);
    final ByteBuffer buf = this.getVariableData();
    buf.put(lmbcs);
    return this;
  }

  @StructureSetter("HintTextLength")
  CDFieldHint setHintTextLength(int len);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy