Class UiColor

java.lang.Object
org.teamapps.dto.UiColor
All Implemented Interfaces:
UiObject

public class UiColor
extends java.lang.Object
implements UiObject
THIS IS GENERATED CODE! PLEASE DO NOT MODIFY - ALL YOUR WORK WOULD BE LOST!
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected float alpha  
    protected int blue  
    protected int green  
    protected int red  
  • Constructor Summary

    Constructors 
    Constructor Description
    UiColor()
    Deprecated.
    Only for Jackson deserialization.
    UiColor​(int red, int green, int blue)  
  • Method Summary

    Modifier and Type Method Description
    float getAlpha()  
    int getBlue()  
    int getGreen()  
    int getRed()  
    UiObjectType getUiObjectType()  
    UiColor setAlpha​(float alpha)  
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • red

      protected int red
    • green

      protected int green
    • blue

      protected int blue
    • alpha

      protected float alpha
  • Constructor Details

    • UiColor

      @Deprecated public UiColor()
      Deprecated.
      Only for Jackson deserialization. Use the other constructor instead.
    • UiColor

      public UiColor​(int red, int green, int blue)
  • Method Details