Interface CategoryDefinitionOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
CategoryDefinition, CategoryDefinition.Builder

@Generated public interface CategoryDefinitionOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Optional description of this category.
    com.google.protobuf.ByteString
    Optional description of this category.
    Human-readable name displayed in the UI.
    com.google.protobuf.ByteString
    Human-readable name displayed in the UI.
    Icon identifier for the category.
    com.google.protobuf.ByteString
    Icon identifier for the category.
    The unique identifier for this category.
    com.google.protobuf.ByteString
    The unique identifier for this category.
    int
    Sort order for displaying categories (lower = earlier).

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getId

      String getId()
      The unique identifier for this category.
      Examples: "triggers", "actions", "math", "logic".
      
      string id = 1;
      Returns:
      The id.
    • getIdBytes

      com.google.protobuf.ByteString getIdBytes()
      The unique identifier for this category.
      Examples: "triggers", "actions", "math", "logic".
      
      string id = 1;
      Returns:
      The bytes for id.
    • getDisplayName

      String getDisplayName()
      Human-readable name displayed in the UI.
      Examples: "Triggers", "Actions", "Math", "Logic".
      
      string display_name = 2;
      Returns:
      The displayName.
    • getDisplayNameBytes

      com.google.protobuf.ByteString getDisplayNameBytes()
      Human-readable name displayed in the UI.
      Examples: "Triggers", "Actions", "Math", "Logic".
      
      string display_name = 2;
      Returns:
      The bytes for displayName.
    • getIcon

      String getIcon()
      Icon identifier for the category.
      Examples: "zap", "play", "calculator", "git-branch".
      
      string icon = 3;
      Returns:
      The icon.
    • getIconBytes

      com.google.protobuf.ByteString getIconBytes()
      Icon identifier for the category.
      Examples: "zap", "play", "calculator", "git-branch".
      
      string icon = 3;
      Returns:
      The bytes for icon.
    • getDescription

      String getDescription()
      Optional description of this category.
      
      string description = 4;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
      Optional description of this category.
      
      string description = 4;
      Returns:
      The bytes for description.
    • getSortOrder

      int getSortOrder()
      Sort order for displaying categories (lower = earlier).
      
      int32 sort_order = 5;
      Returns:
      The sortOrder.